summaryrefslogtreecommitdiff
path: root/autogen.sh
diff options
context:
space:
mode:
authorAlexander Larsson <alexl@src.gnome.org>2007-09-13 12:48:42 +0000
committerAlexander Larsson <alexl@src.gnome.org>2007-09-13 12:48:42 +0000
commit591dab1837face12e777e10cf8906072151b4f85 (patch)
tree230969563b2f2e226985fdb2503d44f413037f9e /autogen.sh
parent314c48978a5ae3a99e4152b83f423e157af2710c (diff)
downloadgvfs-591dab1837face12e777e10cf8906072151b4f85.tar.gz
Run glib-gettextize in autogen
Look for "automake" not automake-1.7 Original git commit by Hans Petter Jansson <hpj@cl.no> at 1175586388 +0200 svn path=/trunk/; revision=449
Diffstat (limited to 'autogen.sh')
-rwxr-xr-xautogen.sh11
1 files changed, 6 insertions, 5 deletions
diff --git a/autogen.sh b/autogen.sh
index 1879cb3a..3b0b9c46 100755
--- a/autogen.sh
+++ b/autogen.sh
@@ -45,9 +45,9 @@ fi
DIE=1
}
-if automake-1.7 --version < /dev/null > /dev/null 2>&1 ; then
- AUTOMAKE=automake-1.7
- ACLOCAL=aclocal-1.7
+if automake --version < /dev/null > /dev/null 2>&1 ; then
+ AUTOMAKE=automake
+ ACLOCAL=aclocal
else
echo
echo "You must have automake 1.7.x installed to compile $PROJECT."
@@ -98,11 +98,12 @@ rm -rf autom4te.cache
# regenerated from their corresponding *.in files by ./configure anyway.
touch README INSTALL
-$ACLOCAL $ACLOCAL_FLAGS || exit $?
-
libtoolize --force || exit $?
+glib-gettextize -f || exit $?
gtkdocize || exit $?
+$ACLOCAL $ACLOCAL_FLAGS || exit $?
+
autoheader || exit $?
$AUTOMAKE --add-missing || exit $?