summaryrefslogtreecommitdiffstats
path: root/aclocal.m4
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1997-12-06 15:43:26 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1997-12-06 15:43:26 +0000
commitaf231b4fde4cbe85bd02dea0a69589e51149de88 (patch)
tree67361959a3064025268c722a0bccd761a03423ed /aclocal.m4
parentChanged the uuencode line to work better with VPATH setups. (diff)
downloadrtems-af231b4fde4cbe85bd02dea0a69589e51149de88.tar.bz2
Removed need for -follow option to find.
Diffstat (limited to 'aclocal.m4')
-rw-r--r--aclocal.m42
1 files changed, 1 insertions, 1 deletions
diff --git a/aclocal.m4 b/aclocal.m4
index 03c982d629..7a64ac3b80 100644
--- a/aclocal.m4
+++ b/aclocal.m4
@@ -50,7 +50,7 @@ AC_MSG_CHECKING(for $2 in $1)
if test -d $srcdir/$1; then
rtems_av_save_dir=`pwd`;
cd $srcdir;
- rtems_av_tmp=`find $1 -name $2 -follow -print | sed 's%\.in%%' | sort`;
+ rtems_av_tmp=`find $1 -name $2 -print | sed 's%\.in%%' | sort`;
$3="$$3 $rtems_av_tmp";
cd $rtems_av_save_dir;
AC_MSG_RESULT(done)