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

Derek Atkins warlord at cvs.gnucash.org
Mon Apr 5 15:06:42 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.

Tags:
----
gnucash-1-8-branch

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

Revision Data
-------------
Index: ChangeLog
===================================================================
RCS file: /home/cvs/cvsroot/gnucash/ChangeLog,v
retrieving revision 1.1461.2.318
retrieving revision 1.1461.2.319
diff -LChangeLog -LChangeLog -u -r1.1461.2.318 -r1.1461.2.319
--- 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.15.2.1
retrieving revision 1.15.2.2
diff -Lmacros/autogen.sh -Lmacros/autogen.sh -u -r1.15.2.1 -r1.15.2.2
--- macros/autogen.sh
+++ macros/autogen.sh
@@ -164,15 +164,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