diff options
author | Miles Lane <miles_lane@yahoo.com> | 2002-08-12 07:35:14 +0000 |
---|---|---|
committer | Miles Lane <miles@src.gnome.org> | 2002-08-12 07:35:14 +0000 |
commit | c88d561548c529c9d9e7428eaf8b9af30f657fdb (patch) | |
tree | 5f486492ec9fa604ea7d8a43d887959b3d75488f | |
parent | 5c24c70e10b30418a562cda2b79a41fa696b5ba5 (diff) | |
download | shared-mime-info-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/ChangeLog | 6 | ||||
-rw-r--r-- | macros2/autogen.sh | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/macros2/ChangeLog b/macros2/ChangeLog index c3002311..39ef1a8c 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 81012ca2..168fc50a 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` |