From 17eee61f512a8fe64553cff809391df1d2c3cf7c Mon Sep 17 00:00:00 2001 From: Derek Atkins Date: Mon, 5 Apr 2004 18:31:22 +0000 Subject: [PATCH] Deal with gettext not doing anything on every autogen. * macros/autogen.sh: make sure we always have intl and po Makefiles in the configure script. Sometimes it was ripped out without being replaced. Reported by twunder. git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@9877 57a11ea4-9604-0410-9ed3-97b8803252fd --- ChangeLog | 6 ++++++ macros/autogen.sh | 10 ++-------- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/ChangeLog b/ChangeLog index 4e9a1ac8b1..2d2dbda2ee 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2004-04-05 Derek Atkins + + * macros/autogen.sh: make sure we always have intl and po Makefiles + in the configure script. Sometimes it was ripped out without being + replaced. Reported by twunder. + 2004-04-01 Derek Atkins * src/gnome/dialog-scheduledxaction.c: Move variable declaration diff --git a/macros/autogen.sh b/macros/autogen.sh index 65eac44ca5..2afaa86f9b 100644 --- a/macros/autogen.sh +++ b/macros/autogen.sh @@ -249,15 +249,9 @@ do echo "*** Ignore any instruction above about running aclocal by hand." echo "*** I repeat, do not run aclocal by hand. You have been warned....." echo - case $gettext_version in - 0.10.*) - grep "intl/Makefile" configure.in > /dev/null || - ( sed -e 's#^AC_OUTPUT(#AC_OUTPUT( intl/Makefile po/Makefile.in#' \ + grep "intl/Makefile" configure.in > /dev/null || + ( sed -e 's#^AC_OUTPUT(#AC_OUTPUT( intl/Makefile po/Makefile.in#' \ configure.in >configure.in.new && mv configure.in.new configure.in ) - ;; - *) - ;; - esac if grep "^AC_PROG_INTLTOOL" configure.in >/dev/null; then echo "Running ${INTLTOOLIZE} ..." ${INTLTOOLIZE} --copy --force --automake