summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRaja R Harinath <harinath@src.gnome.org>2000-02-09 23:19:13 +0000
committerRaja R Harinath <harinath@src.gnome.org>2000-02-09 23:19:13 +0000
commit5a5589196428fe9a280030cfb3196ad278f48003 (patch)
tree5623332f9468829c8dac3be017bb8ae68d31c5e7
parentc3d10717f3478ceddb962b2c4000290f5889fb11 (diff)
downloadgnome-common-5a5589196428fe9a280030cfb3196ad278f48003.tar.gz
Fix GNUism introduced in the previous fix.
* autogen.sh: Fix GNUism introduced in the previous fix. svn path=/trunk/; revision=1091
-rw-r--r--macros/ChangeLog4
-rw-r--r--macros/autogen.sh2
2 files changed, 5 insertions, 1 deletions
diff --git a/macros/ChangeLog b/macros/ChangeLog
index b25a6eb..91d15f7 100644
--- a/macros/ChangeLog
+++ b/macros/ChangeLog
@@ -1,3 +1,7 @@
+2000-02-09 Raja R Harinath <harinath@cs.umn.edu>
+
+ * autogen.sh: Fix GNUism introduced in the previous fix.
+
2000-02-08 Miguel de Icaza <miguel@gnu.org>
* autogen.sh: Handle non GNU find programs.
diff --git a/macros/autogen.sh b/macros/autogen.sh
index b38d8d9..12d25de 100644
--- a/macros/autogen.sh
+++ b/macros/autogen.sh
@@ -94,7 +94,7 @@ do
echo processing $dr
macrodirs=`sed -n -e 's,AM_ACLOCAL_INCLUDE(\(.*\)),\1,gp' < $coin`
( cd $dr
- macrosdir=`find . -name macros`
+ macrosdir=`find . -name macros -print`
for i in $macrodirs; do
if test -f $i/gnome-gettext.m4; then
DELETEFILES="$DELETEFILES $i/gnome-gettext.m4"