GNOME Bugzilla – Bug 321860
gnome-autogen.sh can break darcs repositories
Last modified: 2006-03-20 11:33:29 UTC
This bug has been opened here: http://bugzilla.ubuntu.com/show_bug.cgi?id=19757 "Just like with {arch} and .?* skip _darcs directories otherwise a configure.ac file under darcs control leads to corrupting the repo --- /usr/bin/gnome-autogen.sh 2005-11-10 01:19:03.000000000 +0200 +++ gnome-autogen.sh 2005-11-17 12:13:52.000000000 +0200 @@ -240,7 +240,7 @@ 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 '_darcs' -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"
I also use darcs, and have the same problem.
Fixed in CVS.
Sorry, but I think you have forgotten -name before '_darcs' You have submitted: ... -o '_darcs' -prune .... which should be: ... -o -name '_darcs' -prune ....
You are right. I've fixed it in CVS now.
*** Bug 335134 has been marked as a duplicate of this bug. ***