From: Akim Demaille Date: Tue, 8 Feb 2000 10:59:38 +0000 (+0000) Subject: * acgeneral.m4 (ac_includes_default): Don't use simple quotes, but X-Git-Tag: autoconf-2.50~1212 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6372ab2eec858083a1ed318d07d70597645a0d67;p=thirdparty%2Fautoconf.git * acgeneral.m4 (ac_includes_default): Don't use simple quotes, but doubles quotes if you want to use -continuation lines: this is not recognized by MIPS' sh. --- diff --git a/ChangeLog b/ChangeLog index 80de48875..c438ccadf 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2000-02-08 Akim Demaille + + * acgeneral.m4 (ac_includes_default): Don't use simple quotes, but + doubles quotes if you want to use \-continuation lines: this is + not recognized by MIPS' sh. + 2000-02-08 Akim Demaille * acgeneral.m4. Formatting changes. diff --git a/acgeneral.m4 b/acgeneral.m4 index c38022ed9..6eed6c7fb 100644 --- a/acgeneral.m4 +++ b/acgeneral.m4 @@ -1857,7 +1857,7 @@ AC_DEFUN(AC_TRY_COMMAND, AC_DIVERT_PUSH(AC_DIVERSION_INIT)dnl # Factorizing default headers for most tests. # Mandatory included if its is not used. -ac_includes_default='\ +ac_includes_default="\ #include #include #if HAVE_STRING_H @@ -1880,7 +1880,7 @@ ac_includes_default='\ #endif #if HAVE_UNISTD_H # include -#endif' +#endif" AC_DIVERT_POP() diff --git a/lib/autoconf/general.m4 b/lib/autoconf/general.m4 index c38022ed9..6eed6c7fb 100644 --- a/lib/autoconf/general.m4 +++ b/lib/autoconf/general.m4 @@ -1857,7 +1857,7 @@ AC_DEFUN(AC_TRY_COMMAND, AC_DIVERT_PUSH(AC_DIVERSION_INIT)dnl # Factorizing default headers for most tests. # Mandatory included if its is not used. -ac_includes_default='\ +ac_includes_default="\ #include #include #if HAVE_STRING_H @@ -1880,7 +1880,7 @@ ac_includes_default='\ #endif #if HAVE_UNISTD_H # include -#endif' +#endif" AC_DIVERT_POP()