]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
* acspecific.m4 (AC_FUNC_SELECT_ARGTYPES): Use
authorAkim Demaille <akim@epita.fr>
Thu, 16 Mar 2000 18:12:58 +0000 (18:12 +0000)
committerAkim Demaille <akim@epita.fr>
Thu, 16 Mar 2000 18:12:58 +0000 (18:12 +0000)
  : ${foo='some words'}
not
  : ${foo=some words}
since this is not portable: Digital Unix v5.0: `bad substitution'.
From Nicolas Joly.

ChangeLog
acspecific.m4
lib/autoconf/specific.m4

index 7fff8797b1409ce94e39a30c24f0a3e823357e5b..aa9f4046705a39036f5708e176a96d54ebc9b1fa 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2000-03-16  Akim Demaille  <akim@epita.fr>
+
+       * 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  <larsa@sim.no>
 
        * libm4.m4 (m4_assert, m4_shiftn): New macros.
index 61aab81726781667339cd6fb60f80d09c94e2040..c7a5f34fcb61d2ef1fcf95bdcacdb3520b759900 100644 (file)
@@ -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=','
index 61aab81726781667339cd6fb60f80d09c94e2040..c7a5f34fcb61d2ef1fcf95bdcacdb3520b759900 100644 (file)
@@ -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=','