diff options
author | Bruno Haible <bruno@clisp.org> | 2005-03-14 11:13:48 +0000 |
---|---|---|
committer | Bruno Haible <bruno@clisp.org> | 2009-06-23 12:12:24 +0200 |
commit | 824282d83b636190720bc559867aaae7cf74bf1e (patch) | |
tree | c9220b295092298b27f5861091e749bd883fbe8e /gettext-runtime/m4/gettext.m4 | |
parent | 8c906ea9eddc150b22f819b488cfc7676fd4757f (diff) | |
download | external_gettext-824282d83b636190720bc559867aaae7cf74bf1e.zip external_gettext-824282d83b636190720bc559867aaae7cf74bf1e.tar.gz external_gettext-824282d83b636190720bc559867aaae7cf74bf1e.tar.bz2 |
Fix quoting bug.
Diffstat (limited to 'gettext-runtime/m4/gettext.m4')
-rw-r--r-- | gettext-runtime/m4/gettext.m4 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gettext-runtime/m4/gettext.m4 b/gettext-runtime/m4/gettext.m4 index 1626ac0..6261026 100644 --- a/gettext-runtime/m4/gettext.m4 +++ b/gettext-runtime/m4/gettext.m4 @@ -1,4 +1,4 @@ -# gettext.m4 serial 35 (gettext-0.14.3) +# gettext.m4 serial 36 (gettext-0.14.3) dnl Copyright (C) 1995-2005 Free Software Foundation, Inc. dnl This file is free software; the Free Software Foundation dnl gives unlimited permission to copy and/or distribute it, @@ -63,8 +63,8 @@ AC_DEFUN([AM_GNU_GETTEXT], ifelse([$2], [], , [ifelse([$2], [need-ngettext], , [ifelse([$2], [need-formatstring-macros], , [errprint([ERROR: invalid second argument to AM_GNU_GETTEXT ])])])]) - define(gt_included_intl, ifelse([$1], [external], [no], [yes])) - define(gt_libtool_suffix_prefix, ifelse([$1], [use-libtool], [l], [])) + define([gt_included_intl], ifelse([$1], [external], [no], [yes])) + define([gt_libtool_suffix_prefix], ifelse([$1], [use-libtool], [l], [])) AC_REQUIRE([AM_PO_SUBDIRS])dnl ifelse(gt_included_intl, yes, [ |