From: Bruno Haible Date: Tue, 30 May 2006 20:13:53 +0000 (+0000) Subject: Fix M4 underquoting. X-Git-Tag: v0.15~120 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=be2597d4288883d35095c9c455544713e3fed197;p=thirdparty%2Fgettext.git Fix M4 underquoting. --- diff --git a/gettext-tools/m4/ChangeLog b/gettext-tools/m4/ChangeLog index 453273fc6..732c2a96b 100644 --- a/gettext-tools/m4/ChangeLog +++ b/gettext-tools/m4/ChangeLog @@ -1,3 +1,7 @@ +2006-05-30 Ralf Wildenhues + + * regex.m4 (gl_INCLUDED_REGEX): Fix M4 underquoting. + 2006-04-30 Bruno Haible * relocatable.m4 (AC_RELOCATABLE): Also test for availability of diff --git a/gettext-tools/m4/regex.m4 b/gettext-tools/m4/regex.m4 index b26cca3d5..19ff71bfa 100644 --- a/gettext-tools/m4/regex.m4 +++ b/gettext-tools/m4/regex.m4 @@ -32,7 +32,7 @@ AC_DEFUN([gl_INCLUDED_REGEX], # test #75' in grep-2.3. AC_CACHE_CHECK([for working re_compile_pattern], jm_cv_func_working_re_compile_pattern, - AC_TRY_RUN( + [AC_TRY_RUN( [#include #include #include @@ -84,7 +84,7 @@ AC_DEFUN([gl_INCLUDED_REGEX], jm_cv_func_working_re_compile_pattern=yes, jm_cv_func_working_re_compile_pattern=no, dnl When crosscompiling, assume it's broken. - jm_cv_func_working_re_compile_pattern=no)) + jm_cv_func_working_re_compile_pattern=no)]) if test $jm_cv_func_working_re_compile_pattern = yes; then ac_use_included_regex=no fi