automake-patches
[Top][All Lists]
Advanced

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

[SCM] GNU Automake branch, master, updated. Release-1-10-103-gd4b81e6


From: Ralf Wildenhues
Subject: [SCM] GNU Automake branch, master, updated. Release-1-10-103-gd4b81e6
Date: Sat, 12 Jan 2008 14:34:58 +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 Automake".

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

The branch, master has been updated
       via  d4b81e606918c3b492f9da5f04c1b51f205be6db (commit)
      from  541518fed16c47776ff428597e892da067343c77 (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 d4b81e606918c3b492f9da5f04c1b51f205be6db
Author: Ralf Wildenhues <address@hidden>
Date:   Sat Jan 12 15:33:06 2008 +0100

    * m4/init.m4 (_AC_AM_CONFIG_HEADER_HOOK): Rewrite to be more
    resistant to different quoting styles of $1.

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

Summary of changes:
 ChangeLog  |    3 +++
 m4/init.m4 |    9 +++++----
 2 files changed, 8 insertions(+), 4 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 7214c19..6994314 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
 2008-01-12  Ralf Wildenhues  <address@hidden>
 
+       * m4/init.m4 (_AC_AM_CONFIG_HEADER_HOOK): Rewrite to be more
+       resistant to different quoting styles of $1.
+
        Clarify texinfo.tex and TEXINFO_TEX semantics.
        * doc/automake.texi (Texinfo): Clarify that by default,
        texinfo.tex is searched in the same directory as the Makefile.am
diff --git a/m4/init.m4 b/m4/init.m4
index 511073c..3e673db 100644
--- a/m4/init.m4
+++ b/m4/init.m4
@@ -1,13 +1,13 @@
 # Do all the work for Automake.                             -*- Autoconf -*-
 
 # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
-# 2005, 2006 Free Software Foundation, Inc.
+# 2005, 2006, 2008 Free Software Foundation, Inc.
 #
 # This file is free software; the Free Software Foundation
 # gives unlimited permission to copy and/or distribute it,
 # with or without modifications, as long as this notice is preserved.
 
-# serial 12
+# serial 13
 
 # This macro actually does too much.  Some checks are only needed if
 # your package does certain things.  But this isn't really a big deal.
@@ -112,13 +112,14 @@ AC_PROVIDE_IFELSE([AC_PROG_OBJC],
 # our stamp files there.
 AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK],
 [# Compute $1's index in $config_headers.
+_am_arg=$1
 _am_stamp_count=1
 for _am_header in $config_headers :; do
   case $_am_header in
-    $1 | $1:* )
+    $_am_arg | $_am_arg:* )
       break ;;
     * )
       _am_stamp_count=`expr $_am_stamp_count + 1` ;;
   esac
 done
-echo "timestamp for $1" >`AS_DIRNAME([$1])`/stamp-h[]$_am_stamp_count])
+echo "timestamp for $_am_arg" 
>`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count])


hooks/post-receive
--
GNU Automake




reply via email to

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