fix the "find" test so that the presence of configure.in is reporteded.
authorMiles Lane <miles_lane@yahoo.com>
Mon, 12 Aug 2002 07:35:14 +0000 (07:35 +0000)
committerMiles Lane <miles@src.gnome.org>
Mon, 12 Aug 2002 07:35:14 +0000 (07:35 +0000)
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

macros2/ChangeLog
macros2/autogen.sh

index c300231..39ef1a8 100644 (file)
@@ -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
index 81012ca..168fc50 100644 (file)
@@ -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`