skip directories called "_darcs", similar to the handling of other VCS
authorJames Henstridge <james@jamesh.id.au>
Thu, 9 Mar 2006 16:34:41 +0000 (16:34 +0000)
committerJames Henstridge <jamesh@src.gnome.org>
Thu, 9 Mar 2006 16:34:41 +0000 (16:34 +0000)
2006-03-10  James Henstridge  <james@jamesh.id.au>

* macros2/gnome-autogen.sh (configure_files): skip directories
called "_darcs", similar to the handling of other VCS metadata
dirs.  Fixes bug #321860.

svn path=/trunk/; revision=3775

ChangeLog
macros2/gnome-autogen.sh

index 679105d..65a5463 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2006-03-10  James Henstridge  <james@jamesh.id.au>
+
+       * macros2/gnome-autogen.sh (configure_files): skip directories
+       called "_darcs", similar to the handling of other VCS metadata
+       dirs.  Fixes bug #321860.
+
 2005-10-24  James Henstridge  <james@jamesh.id.au>
 
        * macros2/gnome-autogen.sh (configure_files): update find
index 14c66c8..297fcfc 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 '_darcs' -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