idir=/opt/tmp/opt/rtems

rdir=/opt/rtems

cd $idir
find . -type f | while read file
do
  if [ ! -f ${file} ] ; then
     echo ${file} missing
  fi
done
This commit is contained in:
Joel Sherrill
1999-10-26 12:39:24 +00:00
parent a94521ccc7
commit 2782e69ff0
7 changed files with 13 additions and 26 deletions

View File

@@ -5,12 +5,8 @@
AUTOMAKE_OPTIONS = foreign 1.4
ACLOCAL_AMFLAGS = -I $(RTEMS_TOPdir)/aclocal
if HAS_LIBCHIP
LIBCHIP = libchip
endif
SUBDIRS = start include libc libcpu libbsp \
$(LIBCHIP) $(LIBHWAPI)
$(LIBHWAPI)
include $(top_srcdir)/../../../automake/subdirs.am
include $(top_srcdir)/../../../automake/local.am

View File

@@ -58,13 +58,7 @@ RTEMS_CPU_STARTdir="$RTEMS_CPU"
fi
AC_SUBST(RTEMS_CPU_STARTdir)
if test "$RTEMS_CPU" != "unix"; then
## HACK: Suppress libchip for unix
cfg_subdirs="$cfg_subdirs libchip"
fi
AM_CONDITIONAL(HAS_NETWORKING,test "$HAS_NETWORKING" = "yes")
AM_CONDITIONAL(HAS_LIBCHIP,test "$RTEMS_CPU" != "unix")
AC_CONFIG_SUBDIRS($cfg_subdirs)