]> git.ipfire.org Git - thirdparty/autoconf.git/commitdiff
* tests/atspecific.m4 (AT_CONFIGURE_AC): Double quote constant
authorPavel Roskin <proski@gnu.org>
Thu, 15 Feb 2001 23:36:48 +0000 (23:36 +0000)
committerPavel Roskin <proski@gnu.org>
Thu, 15 Feb 2001 23:36:48 +0000 (23:36 +0000)
part of the second argument to AT_DATA.
* tests/compile.at (AC_PROG_CPP with warnings): Fix underquoting
in a call to _AT_CHECK_AC_MACRO.
(AC_PROG_CPP without warnings): Likewise.

ChangeLog
tests/atspecific.m4
tests/compile.at

index 50c4827f1e972971ae161ada83593a8b7b2f1cef..e808289312294184d38a5e3e0180d3088d6ac789 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2001-02-07  Pavel Roskin  <proski@gnu.org>
+
+       * tests/atspecific.m4 (AT_CONFIGURE_AC): Double quote constant
+       part of the second argument to AT_DATA.
+       * tests/compile.at (AC_PROG_CPP with warnings): Fix underquoting
+       in a call to _AT_CHECK_AC_MACRO.
+       (AC_PROG_CPP without warnings): Likewise.
+
 2001-02-11  Jim Meyering  <meyering@lucent.com>
 
        Ensure that even `autoscan --version' fails when e.g.,
index ed79ba66b9ca9d8436aabd19b58c5f8771879ee7..63935b05c0e4478abed3a4da257415650dee919a 100644 (file)
@@ -29,14 +29,14 @@ include(atgeneral.m4)                                       -*- Autoconf -*-
 m4_define([AT_CONFIGURE_AC],
 [AT_CLEANUP_FILES(env-after state*)dnl
 AT_DATA([configure.ac],
-[AC_INIT
+[[AC_INIT
 AC_CONFIG_AUX_DIR($top_srcdir)
 AC_CONFIG_HEADER(config.h:config.hin)
-AC_STATE_SAVE(before)
+AC_STATE_SAVE(before)]
 $1
-AC_OUTPUT
+[AC_OUTPUT
 AC_STATE_SAVE(after)
-])])
+]])])
 
 
 # AT_CHECK_AUTOCONF(FLAGS, [EXIT-STATUS = 0], STDOUT, STDERR)
index 9d03908a07e8e33d2d9aee51b8009d1945cd7e50..416fc9d2a8d1354ad32ba296c93ebaf50b46ce67 100644 (file)
@@ -146,12 +146,12 @@ exec ${1+"$@"}
 chmod +x mycpp
 
 _AT_CHECK_AC_MACRO(
-[AC_PROG_CPP
+[[AC_PROG_CPP
 # If the preprocessor is not strict, just ignore
 test "x$ac_c_preproc_warn_flag" = xyes &&
   AC_MSG_ERROR([preprocessor has no warning option], 77)
 CPP="./mycpp $CPP"
-AC_CHECK_HEADERS(stdio.h autoconf_io.h)])
+AC_CHECK_HEADERS(stdio.h autoconf_io.h)]])
 
 AT_CHECK_DEFINES(
 [/* #undef HAVE_AUTOCONF_IO_H */
@@ -176,7 +176,7 @@ exit 0
 chmod +x mycpp
 
 _AT_CHECK_AC_MACRO(
-[# Ignore if /lib/cpp doesn't work
+[[# Ignore if /lib/cpp doesn't work
 if AC_TRY_COMMAND([/lib/cpp </dev/null >&2]); then :; else
   AC_MSG_ERROR([preprocessor doesn't work], 77)
 fi
@@ -184,7 +184,7 @@ CPP=./mycpp
 AC_PROG_CPP
 test "x$ac_c_preproc_warn_flag" != xyes &&
   AC_MSG_ERROR([failed to detect preprocessor warning option])
-AC_CHECK_HEADERS(stdio.h autoconf_io.h)])
+AC_CHECK_HEADERS(stdio.h autoconf_io.h)]])
 
 AT_CHECK_DEFINES(
 [/* #undef HAVE_AUTOCONF_IO_H */