summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--macros2/ChangeLog4
-rw-r--r--macros2/autogen.sh2
2 files changed, 5 insertions, 1 deletions
diff --git a/macros2/ChangeLog b/macros2/ChangeLog
index 39ef1a8c..96540944 100644
--- a/macros2/ChangeLog
+++ b/macros2/ChangeLog
@@ -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
diff --git a/macros2/autogen.sh b/macros2/autogen.sh
index 168fc50a..6c2258c6 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 -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`