diff options
author | Darin Adler <darin@src.gnome.org> | 2001-10-02 19:20:02 +0000 |
---|---|---|
committer | Darin Adler <darin@src.gnome.org> | 2001-10-02 19:20:02 +0000 |
commit | 7842363032dd621ce3485a0059da7ddab20d36da (patch) | |
tree | b4198856479a7b0f3ce745329d9a0d5db766fbd4 /macros | |
parent | 31ef748bbdf8777c81dbc4b98ee17be03619ef4f (diff) | |
download | gnome-common-7842363032dd621ce3485a0059da7ddab20d36da.tar.gz |
Complete intltool support.
* autogen.sh: Complete intltool support.
svn path=/trunk/; revision=2013
Diffstat (limited to 'macros')
-rw-r--r-- | macros/ChangeLog | 4 | ||||
-rw-r--r-- | macros/autogen.sh | 8 |
2 files changed, 10 insertions, 2 deletions
diff --git a/macros/ChangeLog b/macros/ChangeLog index 84a4bd2..47ee610 100644 --- a/macros/ChangeLog +++ b/macros/ChangeLog @@ -1,5 +1,9 @@ 2001-10-02 Darin Adler <darin@bentspoon.com> + * autogen.sh: Complete intltool support. + +2001-10-02 Darin Adler <darin@bentspoon.com> + * autogen.sh: Add intltool support. 2001-09-16 Eskil Heyn Olsen <eskil@eskil.dk> diff --git a/macros/autogen.sh b/macros/autogen.sh index ebc4768..71f7dfc 100644 --- a/macros/autogen.sh +++ b/macros/autogen.sh @@ -17,7 +17,7 @@ fi DIE=1 } -(grep "^AM_PROG_INTLTOOL" $srcdir/configure.in >/dev/null) && { +(grep "^AC_PROG_INTLTOOL" $srcdir/configure.in >/dev/null) && { (intltoolize --version) < /dev/null > /dev/null 2>&1 || { echo echo "**Error**: You must have \`intltoolize' installed to compile $PKG_NAME." @@ -158,8 +158,12 @@ do echo "Making $dr/aclocal.m4 writable ..." test -r $dr/aclocal.m4 && chmod u+w $dr/aclocal.m4 fi + if grep "^AC_PROG_INTLTOOL" configure.in >/dev/null; then + echo "Running intltoolize..." + intltoolize --copy --force --automake + fi if grep "^AM_PROG_XML_I18N_TOOLS" configure.in >/dev/null; then - echo "Running xml-i18n-toolize... Ignore non-fatal messages." + echo "Running xml-i18n-toolize..." xml-i18n-toolize --copy --force --automake fi if grep "^AM_PROG_LIBTOOL" configure.in >/dev/null; then |