update find expression to not exclude ".." from search. Fixes non-srcdir
authorJames Henstridge <james@jamesh.id.au>
Mon, 24 Oct 2005 04:45:56 +0000 (04:45 +0000)
committerJames Henstridge <jamesh@src.gnome.org>
Mon, 24 Oct 2005 04:45:56 +0000 (04:45 +0000)
2005-10-24  James Henstridge  <james@jamesh.id.au>

* macros2/gnome-autogen.sh (configure_files): update find
expression to not exclude ".." from search.  Fixes non-srcdir
builds (where $srcdir might be "..").  Fixes bug #319496.

svn path=/trunk/; revision=3774

ChangeLog
macros2/gnome-autogen.sh

index 1d87e20..679105d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2005-10-24  James Henstridge  <james@jamesh.id.au>
+
+       * macros2/gnome-autogen.sh (configure_files): update find
+       expression to not exclude ".." from search.  Fixes non-srcdir
+       builds (where $srcdir might be "..").  Fixes bug #319496.
+
 2005-09-20  Stepan Kasal  <kasal@ucw.cz>
 
        * macros2/gnome-autogen.sh: Prefer newer versions of Automake.
index 8aa4e82..14c66c8 100644 (file)
@@ -240,7 +240,7 @@ want_pkg_config=false
 want_gtk_doc=false
 want_gnome_doc_utils=false
 
-configure_files="`find $srcdir -name '{arch}' -prune -o -name '.?*' -prune -o -name configure.ac -print -o -name configure.in -print`"
+configure_files="`find $srcdir -name '{arch}' -prune -o -name '.??*' -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 ||
        grep "^LT_INIT" $configure_ac >/dev/null; then