automake-commit
[Top][All Lists]
Advanced

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

[Automake-commit] [SCM] GNU Automake branch, maint, updated. v1.11-690-g


From: Peter Rosin
Subject: [Automake-commit] [SCM] GNU Automake branch, maint, updated. v1.11-690-g4ced60d
Date: Tue, 14 Feb 2012 12:50:56 +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=4ced60d7fc474f008d642e280f7205f75f7c04d9

The branch, maint has been updated
       via  4ced60d7fc474f008d642e280f7205f75f7c04d9 (commit)
      from  06684c510ab3115093178cdcfb28c2fff41b324c (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 4ced60d7fc474f008d642e280f7205f75f7c04d9
Author: Peter Rosin <address@hidden>
Date:   Tue Feb 14 12:55:32 2012 +0100

    fixup: do not tickle makefile-deps.test with the make_dryrun code
    
    * lib/am/header-vars.am (am__make_dryrun): Avoid code matching
    '^ *:' in the Makefile, as that tickles makefile-deps.test.

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

Summary of changes:
 lib/am/header-vars.am |    5 ++++-
 1 files changed, 4 insertions(+), 1 deletions(-)

diff --git a/lib/am/header-vars.am b/lib/am/header-vars.am
index 1078a3d..97516ef 100644
--- a/lib/am/header-vars.am
+++ b/lib/am/header-vars.am
@@ -32,12 +32,15 @@ VPATH = @srcdir@
 ## and are thus executed also with "make -n" -- either because they
 ## are declared as dependencies to '.MAKE' (NetBSD make), or because
 ## their recipes contain the "$(MAKE)" string (GNU and Solari make).
+
+## The case statement has [:] in order to not tickle makefile-deps.test
+## which greps for '^ *:'.
 am__make_dryrun = \
   { \
     am__dry=no; \
     for am__flg in : $(MAKEFLAGS); do \
       case $$am__flg in \
-        :) ;; \
+        [:]) ;; \
         *=*|--*) ;; \
         *n*) am__dry=yes; break;; \
       esac; \


hooks/post-receive
-- 
GNU Automake



reply via email to

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