diff options
author | Alexander Larsson <alexl@src.gnome.org> | 2007-09-13 12:48:42 +0000 |
---|---|---|
committer | Alexander Larsson <alexl@src.gnome.org> | 2007-09-13 12:48:42 +0000 |
commit | 591dab1837face12e777e10cf8906072151b4f85 (patch) | |
tree | 230969563b2f2e226985fdb2503d44f413037f9e /autogen.sh | |
parent | 314c48978a5ae3a99e4152b83f423e157af2710c (diff) | |
download | gvfs-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-x | autogen.sh | 11 |
1 files changed, 6 insertions, 5 deletions
@@ -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 $? |