[Gnucash-changes] Deal with gettext not doing anything on every autogen.

Derek Atkins warlord at cvs.gnucash.org
Mon Apr 5 14:31:24 EDT 2004


Log Message:
-----------
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.

Modified Files:
--------------
    gnucash:
        ChangeLog
    gnucash/macros:
        autogen.sh

Revision Data
-------------
Index: ChangeLog
===================================================================
RCS file: /home/cvs/cvsroot/gnucash/ChangeLog,v
retrieving revision 1.1797
retrieving revision 1.1798
diff -LChangeLog -LChangeLog -u -r1.1797 -r1.1798
--- ChangeLog
+++ ChangeLog
@@ -1,3 +1,9 @@
+2004-04-05  Derek Atkins  <derek at ihtfp.com>
+
+	* 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  <derek at ihtfp.com>
 
 	* src/gnome/dialog-scheduledxaction.c: Move variable declaration
Index: autogen.sh
===================================================================
RCS file: /home/cvs/cvsroot/gnucash/macros/autogen.sh,v
retrieving revision 1.20
retrieving revision 1.21
diff -Lmacros/autogen.sh -Lmacros/autogen.sh -u -r1.20 -r1.21
--- macros/autogen.sh
+++ macros/autogen.sh
@@ -249,15 +249,9 @@
       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


More information about the Gnucash-changes mailing list