Call all the bootstrap programs (libtoolize, intltoolize, gtkdocize,
authorJordi Mallach <jordi@sindominio.net>
Tue, 9 Nov 2004 09:57:04 +0000 (09:57 +0000)
committerJordi Mallach <jordim@src.gnome.org>
Tue, 9 Nov 2004 09:57:04 +0000 (09:57 +0000)
2004-11-09  Jordi Mallach  <jordi@sindominio.net>

* gnome-autogen.sh: Call all the bootstrap programs (libtoolize,
intltoolize, gtkdocize, automake) using --force and --copy
consistently.

svn path=/trunk/; revision=3482

macros2/ChangeLog
macros2/gnome-autogen.sh

index 50f2824..5ea856a 100644 (file)
@@ -1,3 +1,9 @@
+2004-11-09  Jordi Mallach  <jordi@sindominio.net>
+
+       * gnome-autogen.sh: Call all the bootstrap programs (libtoolize,
+       intltoolize, gtkdocize, automake) using --force and --copy
+       consistently.
+
 2004-10-28  James Henstridge  <james@jamesh.id.au>
 
        * gnome-autogen.sh: get rid of the code that modified PATH,
index 8e13b82..0c74fb2 100644 (file)
@@ -324,7 +324,7 @@ for configure_ac in $configure_files; do
        if grep "^A[CM]_PROG_LIBTOOL" $basename >/dev/null || \
           grep "^LT_INIT" $basename >/dev/null; then
            printbold "Running $LIBTOOLIZE..."
-           $LIBTOOLIZE --force || exit 1
+           $LIBTOOLIZE --force --copy || exit 1
        fi
 
        if grep "^AM_GLIB_GNU_GETTEXT" $basename >/dev/null; then
@@ -342,11 +342,11 @@ for configure_ac in $configure_files; do
 
        if grep "^AC_PROG_INTLTOOL" $basename >/dev/null; then
            printbold "Running $INTLTOOLIZE..."
-           $INTLTOOLIZE --force --automake || exit 1
+           $INTLTOOLIZE --force --copy --automake || exit 1
        fi
        if grep "^GTK_DOC_CHECK" $basename >/dev/null; then
            printbold "Running $GTKDOCIZE..."
-           $GTKDOCIZE || exit 1
+           $GTKDOCIZE --copy || exit 1
        fi
 
        if [ "x$USE_COMMON_DOC_BUILD" = "xyes" ]; then
@@ -383,7 +383,7 @@ for configure_ac in $configure_files; do
 
        # Finally, run automake to create the makefiles ...
        printbold "Running $AUTOMAKE..."
-       $AUTOMAKE --gnu --add-missing || exit 1
+       $AUTOMAKE --gnu --add-missing --force --copy || exit 1
 
        cd "$topdir"
     fi