]> git.ipfire.org Git - thirdparty/gettext.git/commitdiff
Fix bug that caused po/Makefile to not be generated in some cases.
authorBruno Haible <bruno@clisp.org>
Thu, 12 Apr 2001 23:50:45 +0000 (23:50 +0000)
committerBruno Haible <bruno@clisp.org>
Thu, 12 Apr 2001 23:50:45 +0000 (23:50 +0000)
m4/ChangeLog
m4/gettext.m4

index b509d67604440c5211ce2b19e531db55ea1f7d7e..c3d72ff41a1ed34626cb19b00d68a3968b3238f3 100644 (file)
@@ -1,3 +1,9 @@
+2001-04-12  Bruno Haible  <haible@clisp.cons.org>
+
+       * gettext.m4 (AM_WITH_NLS): Fix syntax error in 'case'. Change
+       whitespace in $CONFIG_FILES to spaces for matching with 'case'.
+       Reported by Thorsten Kukuk <kukuk@suse.de>.
+
 2001-04-11  Bruno Haible  <haible@clisp.cons.org>
 
        * gettext.m4 (AM_WITH_NLS): Even if 'msgfmt' is not found in $PATH,
index c3bc720257f42bb90a6b388d5b9eff8dd9eb3a67..90b34c609cac71375b916983e20422d801a55164 100644 (file)
@@ -159,8 +159,9 @@ return (int) gettext ("")]ifelse([$2], need-ngettext, [ + (int) ngettext ("", ""
       POSUB=po
     fi
     AC_OUTPUT_COMMANDS(
-     [case " $CONFIG_FILES " in *" po/Makefile.in "* | *" po/Makefile.in:"*)
+     [case " "$CONFIG_FILES" " in *" po/Makefile.in "* | *" po/Makefile.in:"*)
         sed -e "/POTFILES =/r po/POTFILES" po/Makefile.in > po/Makefile
+        ;;
       esac])