diff options
-rw-r--r-- | macros/autogen.sh | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/macros/autogen.sh b/macros/autogen.sh index c67e8c5457..b9c0751ae6 100644 --- a/macros/autogen.sh +++ b/macros/autogen.sh @@ -127,6 +127,8 @@ do echo "Running gettextize... Ignore non-fatal messages." echo "no" | gettextize --force --copy echo "Making $dr/aclocal.m4 writable ..." + echo "Running xml-i18n-toolize... Ignore non-fatal messages." + xml-i18n-toolize --copy --force --automake test -r $dr/aclocal.m4 && chmod u+w $dr/aclocal.m4 fi fi @@ -136,6 +138,8 @@ do echo "Running gettextize... Ignore non-fatal messages." echo "no" | gettextize --force --copy echo "Making $dr/aclocal.m4 writable ..." + echo "Running xml-i18n-toolize... Ignore non-fatal messages." + xml-i18n-toolize --copy --force --automake test -r $dr/aclocal.m4 && chmod u+w $dr/aclocal.m4 fi if grep "^AM_PROG_LIBTOOL" configure.in >/dev/null; then @@ -168,13 +172,6 @@ do fi done -if [ -r po/Makefile.i18npatch ]; then - if grep GENPOT po/Makefile.in.in >/dev/null; - then echo "no need for patching file \`Makefile.in.in'"; - else patch po/Makefile.in.in < po/Makefile.i18npatch; - fi; -fi - conf_flags="--enable-maintainer-mode --enable-compile-warnings" #--enable-iso-c if test x$NOCONFIGURE = x; then |