Replace use of -or in a find command with -o. Makes things work for people
authorMalcolm Tredinnick <malcolm@src.gnome.org>
Wed, 19 Nov 2003 02:10:33 +0000 (02:10 +0000)
committerMalcolm Tredinnick <malcolm@src.gnome.org>
Wed, 19 Nov 2003 02:10:33 +0000 (02:10 +0000)
* autogen.sh: Replace use of -or in a find command with -o.
Makes things work for people with less functional versions of
find. Fixes bug #127354 reported by Rolf Sponsel.

svn path=/trunk/; revision=3070

macros2/ChangeLog
macros2/autogen.sh

index 0a50739..895c7f5 100644 (file)
@@ -1,3 +1,9 @@
+2003-11-19  Malcolm Tredinnick <malcolm@commsecure.com.au>
+
+       * autogen.sh: Replace use of -or in a find command with -o.
+       Makes things work for people with less functional versions of
+       find. Fixes bug #127354 reported by Rolf Sponsel.
+
 2003-11-03    <clahey@ximian.com>
 
        * gnome-common.m4: Removed ENABLE_WERROR and changed name to
index b8f9956..598edc5 100644 (file)
@@ -216,7 +216,7 @@ want_intltool=false
 want_pkg_config=false
 want_gtk_doc=false
 
-configure_files="`find $srcdir -name '{arch}' -prune -o -name configure.ac -print -or -name configure.in -print`"
+configure_files="`find $srcdir -name '{arch}' -prune -o -name configure.ac -print -o -name configure.in -print`"
 for configure_ac in $configure_files; do
     if grep "^A[CM]_PROG_LIBTOOL" $configure_ac >/dev/null; then
        want_libtool=true