From: Akim Demaille Date: Thu, 16 Mar 2000 18:12:58 +0000 (+0000) Subject: * acspecific.m4 (AC_FUNC_SELECT_ARGTYPES): Use X-Git-Tag: autoconf-2.50~1035 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6522e14a8fdbfa4b63169e705619d27caa93f75d;p=thirdparty%2Fautoconf.git * acspecific.m4 (AC_FUNC_SELECT_ARGTYPES): Use : ${foo='some words'} not : ${foo=some words} since this is not portable: Digital Unix v5.0: `bad substitution'. From Nicolas Joly. --- diff --git a/ChangeLog b/ChangeLog index 7fff8797b..aa9f40467 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,12 @@ +2000-03-16 Akim Demaille + + * acspecific.m4 (AC_FUNC_SELECT_ARGTYPES): Use + : ${foo='some words'} + not + : ${foo=some words} + since this is not portable: Digital Unix v5.0: `bad substitution'. + From Nicolas Joly. + 2000-3-16 Lars J. Aas * libm4.m4 (m4_assert, m4_shiftn): New macros. diff --git a/acspecific.m4 b/acspecific.m4 index 61aab8172..c7a5f34fc 100644 --- a/acspecific.m4 +++ b/acspecific.m4 @@ -1930,7 +1930,7 @@ extern int select ($ac_arg1,$ac_arg234,$ac_arg234,$ac_arg234,$ac_arg5);],, done done # Provide a safe default value. -: ${ac_cv_func_select_args=int,int *,struct timeval *} +: ${ac_cv_func_select_args='int,int *,struct timeval *'} ]) ac_save_IFS=$IFS IFS=',' diff --git a/lib/autoconf/specific.m4 b/lib/autoconf/specific.m4 index 61aab8172..c7a5f34fc 100644 --- a/lib/autoconf/specific.m4 +++ b/lib/autoconf/specific.m4 @@ -1930,7 +1930,7 @@ extern int select ($ac_arg1,$ac_arg234,$ac_arg234,$ac_arg234,$ac_arg5);],, done done # Provide a safe default value. -: ${ac_cv_func_select_args=int,int *,struct timeval *} +: ${ac_cv_func_select_args='int,int *,struct timeval *'} ]) ac_save_IFS=$IFS IFS=','