summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiles Lane <miles_lane@yahoo.com>2002-08-12 07:35:14 +0000
committerMiles Lane <miles@src.gnome.org>2002-08-12 07:35:14 +0000
commitc88d561548c529c9d9e7428eaf8b9af30f657fdb (patch)
tree5f486492ec9fa604ea7d8a43d887959b3d75488f
parent5c24c70e10b30418a562cda2b79a41fa696b5ba5 (diff)
downloadgnome-common-c88d561548c529c9d9e7428eaf8b9af30f657fdb.tar.gz
fix the "find" test so that the presence of configure.in is reporteded.
2002-08-10 Miles Lane <miles_lane@yahoo.com> * autogen.sh: fix the "find" test so that the presence of configure.in is reporteded. Each expression requires its own -print flag. svn path=/trunk/; revision=2563
-rw-r--r--macros2/ChangeLog6
-rw-r--r--macros2/autogen.sh2
2 files changed, 7 insertions, 1 deletions
diff --git a/macros2/ChangeLog b/macros2/ChangeLog
index c300231..39ef1a8 100644
--- a/macros2/ChangeLog
+++ b/macros2/ChangeLog
@@ -1,3 +1,9 @@
+2002-08-10 Miles Lane <miles_lane@yahoo.com>
+
+ * autogen.sh: fix the "find" test so that the presence of
+ configure.in is reporteded. Each expression requires its
+ own -print flag.
+
2002-08-10 Sebastian Rittau <srittau@jroger.in-berlin.de>
* autogen.sh: support for configure.ac
diff --git a/macros2/autogen.sh b/macros2/autogen.sh
index 81012ca..168fc50 100644
--- a/macros2/autogen.sh
+++ b/macros2/autogen.sh
@@ -117,7 +117,7 @@ xlc )
am_opt=--include-deps;;
esac
-for coin in `find $srcdir -name configure.in -or -name configure.ac -print`
+for coin in `find $srcdir -name configure.in -print -or -name configure.ac -print`
do
dr=`dirname $coin`
bn=`basename $coin`