summaryrefslogtreecommitdiffstats
path: root/aclocal
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2000-02-04 19:25:57 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2000-02-04 19:25:57 +0000
commit95d90725e901094021d4aa5e8f1685331d93acce (patch)
tree3680002c122cad1eff6b7fbcdcd2901d12f28d98 /aclocal
parentIncorrect error status returned. Noted by Andrew Klossner (diff)
downloadrtems-95d90725e901094021d4aa5e8f1685331d93acce.tar.bz2
Obsolete files. Removed per recommendation from Ralf Corsepius
<corsepiu@faw.uni-ulm.de>.
Diffstat (limited to 'aclocal')
-rw-r--r--aclocal/check-files-in.m424
-rw-r--r--aclocal/check-makefile.m412
2 files changed, 0 insertions, 36 deletions
diff --git a/aclocal/check-files-in.m4 b/aclocal/check-files-in.m4
deleted file mode 100644
index f68729b715..0000000000
--- a/aclocal/check-files-in.m4
+++ /dev/null
@@ -1,24 +0,0 @@
-dnl
-dnl $Id$
-dnl
-
-dnl RTEMS_CHECK_FILES_IN(path,file,var)
-dnl path .. path relative to srcdir, where to start searching for files
-dnl file .. name of the files to search for
-dnl var .. shell variable to append files found
-
-AC_DEFUN(RTEMS_CHECK_FILES_IN,
-[
-AC_MSG_CHECKING(for $2.in in $1)
-if test -d $srcdir/$1; then
- rtems_av_save_dir=`pwd`;
- cd $srcdir;
- rtems_av_tmp=`find $1 -name "$2.in" -print | sed "s/$2\.in/%/" | sort | sed "s/%/$2/"`
- $3="$$3 $rtems_av_tmp";
- cd $rtems_av_save_dir;
- AC_MSG_RESULT(done)
-else
- AC_MSG_RESULT(no)
-fi
-])
-
diff --git a/aclocal/check-makefile.m4 b/aclocal/check-makefile.m4
deleted file mode 100644
index 16b1c11118..0000000000
--- a/aclocal/check-makefile.m4
+++ /dev/null
@@ -1,12 +0,0 @@
-dnl
-dnl $Id$
-dnl
-
-dnl RTEMS_CHECK_MAKEFILE(path)
-dnl Search for Makefile.in's within the directory starting
-dnl at path and append an entry for Makefile to global variable
-dnl "makefiles" (from configure.in) for each Makefile.in found
-dnl
-AC_DEFUN(RTEMS_CHECK_MAKEFILE,
-[RTEMS_CHECK_FILES_IN($1,Makefile,makefiles)
-])