autogen.sh : use portable -o instead of GNU-ish -or for find test
authorHidetoshi Tajima <tajima@src.gnome.org>
Tue, 13 Aug 2002 06:54:00 +0000 (06:54 +0000)
committerHidetoshi Tajima <tajima@src.gnome.org>
Tue, 13 Aug 2002 06:54:00 +0000 (06:54 +0000)
svn path=/trunk/; revision=2564

macros2/ChangeLog
macros2/autogen.sh

index 39ef1a8..9654094 100644 (file)
@@ -1,3 +1,7 @@
+Mon Aug 12 23:49:41 2002  HideToshi Tajima  <hidetoshi.tajima@sun.com>
+
+       * autogen.sh : use portable -o instead of GNU-ish -or for find test
+
 2002-08-10  Miles Lane  <miles_lane@yahoo.com>
 
        * autogen.sh: fix the "find" test so that the presence of
index 168fc50..6c2258c 100644 (file)
@@ -117,7 +117,7 @@ xlc )
   am_opt=--include-deps;;
 esac
 
-for coin in `find $srcdir -name configure.in -print -or -name configure.ac -print`
+for coin in `find $srcdir -name configure.in -print -o -name configure.ac -print`
 do 
   dr=`dirname $coin`
   bn=`basename $coin`