autoconf-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[SCM] GNU Autoconf source repository branch, master, updated. v2.65-75-g


From: Eric Blake
Subject: [SCM] GNU Autoconf source repository branch, master, updated. v2.65-75-ga18ec77
Date: Tue, 08 Jun 2010 01:11:30 +0000

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU Autoconf source repository".

http://git.sv.gnu.org/gitweb/?p=autoconf.git;a=commitdiff;h=a18ec77aaf1c514a4fe0f122b13f298ba3f3eca0

The branch, master has been updated
       via  a18ec77aaf1c514a4fe0f122b13f298ba3f3eca0 (commit)
      from  ebc0ae4a4caf5939d4958421f1a4108b2319c1d4 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit a18ec77aaf1c514a4fe0f122b13f298ba3f3eca0
Author: Eric Blake <address@hidden>
Date:   Thu Feb 25 16:34:17 2010 -0700

    Properly quote AC_PREREQ during autoupdate.
    
    * lib/autoconf/general.m4 (AC_PREREQ): Follow consistent quoting
    style for AC_PREREQ.
    * tests/tools.at (autoupdating AC_PREREQ): Update expected
    results.
    Reported by NightStrike.
    
    Signed-off-by: Eric Blake <address@hidden>

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog               |    9 +++++++++
 lib/autoconf/general.m4 |    2 +-
 tests/tools.at          |    2 +-
 3 files changed, 11 insertions(+), 2 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index fac7c04..9c62634 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2010-06-07  Eric Blake  <address@hidden>
+
+       Properly quote AC_PREREQ during autoupdate.
+       * lib/autoconf/general.m4 (AC_PREREQ): Follow consistent quoting
+       style for AC_PREREQ.
+       * tests/tools.at (autoupdating AC_PREREQ): Update expected
+       results.
+       Reported by NightStrike.
+
 2010-06-01  Ralf Wildenhues  <address@hidden>
 
        Documentation and tests for the AC_CHECK_DECL change.
diff --git a/lib/autoconf/general.m4 b/lib/autoconf/general.m4
index 762a56c..f73673e 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_dquote(m4_defn([m4_PACKAGE_VERSION])))[[)]])
 
 
 # AC_PREREQ(VERSION)
diff --git a/tests/tools.at b/tests/tools.at
index 05e88c9..167d68a 100644
--- a/tests/tools.at
+++ b/tests/tools.at
@@ -860,7 +860,7 @@ AT_SETUP([autoupdating AC_PREREQ])
 # Produce `AC_PREREQ(<AUTOUPDATE VERSION>)'.
 AT_CHECK([autoupdate --version | sed 's/.*) //;q'], 0, [stdout])
 autoupdate_version=`cat stdout`
-echo "AC_PREREQ($autoupdate_version)" >expout
+[echo "AC_PREREQ([$autoupdate_version])" >expout]
 
 AT_CHECK([echo "AC_PREREQ(1.0)" | autoupdate -],
         0, [expout], [])


hooks/post-receive
-- 
GNU Autoconf source repository



reply via email to

[Prev in Thread] Current Thread [Next in Thread]