After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 321860 - gnome-autogen.sh can break darcs repositories
gnome-autogen.sh can break darcs repositories
Status: RESOLVED FIXED
Product: gnome-common
Classification: Core
Component: general
2.12.x
Other Linux
: Normal normal
: ---
Assigned To: Gnome Common Maintainer(s)
Gnome Common Maintainer(s)
: 335134 (view as bug list)
Depends on:
Blocks:
 
 
Reported: 2005-11-19 13:22 UTC by Sebastien Bacher
Modified: 2006-03-20 11:33 UTC
See Also:
GNOME target: ---
GNOME version: 2.11/2.12



Description Sebastien Bacher 2005-11-19 13:22:09 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"
Comment 1 Aleix Conchillo Flaqué 2006-03-06 15:34:29 UTC
I also use darcs, and have the same problem.
Comment 2 James Henstridge 2006-03-09 16:34:58 UTC
Fixed in CVS.
Comment 3 Aleix Conchillo Flaqué 2006-03-09 17:50:09 UTC
Sorry, but I think you have forgotten   -name   before  '_darcs'

You have submitted: ... -o '_darcs' -prune ....

which should be:  ... -o -name '_darcs' -prune ....
Comment 4 James Henstridge 2006-03-10 02:17:23 UTC
You are right.  I've fixed it in CVS now.
Comment 5 James Henstridge 2006-03-20 11:33:29 UTC
*** Bug 335134 has been marked as a duplicate of this bug. ***