summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSeán de Búrca <leftmostcat@gmail.com>2013-08-27 07:55:53 -0600
committerSeán de Búrca <leftmostcat@gmail.com>2013-08-27 07:55:53 -0600
commitac800833454ab6d38afb288773079b8ad1d5503f (patch)
treeb24ebad59049cfdd3686ac9cb2fd2bf6c27c0454
parentd04839754bbbb6ffed9c4641fed801b586944820 (diff)
downloadgnome-common-ac800833454ab6d38afb288773079b8ad1d5503f.tar.gz
Run intltool before autoreconf so intltool.m4 is picked up by aclocal.
https://bugzilla.gnome.org/show_bug.cgi?id=705365
-rw-r--r--macros2/gnome-autogen.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/macros2/gnome-autogen.sh b/macros2/gnome-autogen.sh
index 202c805..ee4b937 100644
--- a/macros2/gnome-autogen.sh
+++ b/macros2/gnome-autogen.sh
@@ -404,16 +404,16 @@ for configure_ac in $configure_files; do
$GNOME_DOC_PREPARE --force --copy || exit 1
fi
- # Now that all the macros are sorted, run autoreconf ...
- printbold "Running autoreconf..."
- autoreconf --verbose --force --install -Wno-portability || exit 1
-
if grep "^AC_PROG_INTLTOOL" $basename >/dev/null ||
grep "^IT_PROG_INTLTOOL" $basename >/dev/null; then
printbold "Running $INTLTOOLIZE..."
$INTLTOOLIZE --force --copy --automake || exit 1
fi
+ # Now that all the macros are sorted, run autoreconf ...
+ printbold "Running autoreconf..."
+ autoreconf --verbose --force --install -Wno-portability || exit 1
+
cd "$topdir"
fi
done