From 39a3a24f8c49558131f08526796a340d96c40795 Mon Sep 17 00:00:00 2001 From: Eric Blake Date: Thu, 25 Feb 2010 16:34:17 -0700 Subject: [PATCH] WIP: Properly quote AC_PREREQ during autoupdate. Still needs a test. * lib/autoconf/general.m4 (AC_PREREQ): Follow consistent quoting style for AC_PREREQ. Reported by NightStrike. Signed-off-by: Eric Blake --- ChangeLog | 7 +++++++ lib/autoconf/general.m4 | 2 +- 2 files changed, 8 insertions(+), 1 deletions(-) diff --git a/ChangeLog b/ChangeLog index 854d7db..db243c7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,12 @@ 2010-02-25 Eric Blake + Properly quote AC_PREREQ during autoupdate. + * lib/autoconf/general.m4 (AC_PREREQ): Follow consistent quoting + style for AC_PREREQ. + Reported by NightStrike. + +2010-02-25 Eric Blake + Update file flow diagram to mention Automake. * doc/autoconf.texi (Making configure Scripts): Avoid confusion with listing Makefile.in twice on one line. Add a diagram showing diff --git a/lib/autoconf/general.m4 b/lib/autoconf/general.m4 index 15640c8..0830bde 100644 --- a/lib/autoconf/general.m4 +++ b/lib/autoconf/general.m4 @@ -298,7 +298,7 @@ m4_define([AC_REVISION], # Autoconf, which is certainly not what the user intended. AU_DEFUN([AC_PREREQ], [m4_version_prereq([$1])[]dnl -[AC_PREREQ(]]m4_defn([m4_PACKAGE_VERSION])[[)]]) +[AC_PREREQ(]]m4_dquote(m4_defn([m4_PACKAGE_VERSION]))[[)]]) # AC_PREREQ(VERSION) -- 1.6.6.1