summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2010-06-25 23:14:08 -0400
committerMatthias Clasen <mclasen@redhat.com>2010-06-25 23:14:08 -0400
commit6c722e3cdd30a7dc1b0161aa21f519563a9e1de6 (patch)
tree98a71ca4f898f7cd53115aa804b32b566649db2e
parent4c9c472454b1afb4e6e43dfa7a8b8d6c8aeacc76 (diff)
downloadgdk-pixbuf-6c722e3cdd30a7dc1b0161aa21f519563a9e1de6.tar.gz
Fix gettext version issues
We need to run autopoint before aclocal, since otherwise aclocal will copy gettext.m4 from the installed gettext version, ignoring the version that was declared by AM_GNU_GETTEXT_VERSION in configure.ac, and things will fall apart down in po/ later.
-rwxr-xr-xautogen.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/autogen.sh b/autogen.sh
index 50f5f5054..52c685a6f 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -105,11 +105,12 @@ rm -rf autom4te.cache
# regenerated from their corresponding *.in files by ./configure anyway.
touch README INSTALL
+autopoint --force || exit $?
+
$ACLOCAL -I m4 $ACLOCAL_FLAGS || exit $?
libtoolize --force || exit $?
gtkdocize || exit $?
-autopoint --force || exit $?
autoheader || exit $?
$AUTOMAKE --add-missing || exit $?