automake-commit
[Top][All Lists]
Advanced

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

[Automake-commit] [SCM] GNU Automake branch, micro, updated. v1.13.2-63-


From: Peter Rosin
Subject: [Automake-commit] [SCM] GNU Automake branch, micro, updated. v1.13.2-63-gb4bfacb
Date: Thu, 30 May 2013 08:50:35 +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=b4bfacb65624e070a25ad0d77f1353308ddccdf2

The branch, micro has been updated
       via  b4bfacb65624e070a25ad0d77f1353308ddccdf2 (commit)
      from  eb33ae2b29f33bcf65afc036c9a92a61f77f75e3 (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 b4bfacb65624e070a25ad0d77f1353308ddccdf2
Author: Peter Rosin <address@hidden>
Date:   Thu May 30 10:49:42 2013 +0200

    depcomp: avoid trailing backslash in depfile for depmode=msvc7
    
    When compiling a file without any dependencies (no #includes), the
    msvc7 depmode (and consequently msvc7msys) generates a depfile
    Makefile fragment with the last line ending with a backslash. This
    is less robust than needed.
    
    Fixes automake bug#14501.
    
    * lib/depcomp (msvc7): Finish off the depfile Makefile fragment with
    an empty line.
    (scriptversion): Update.
    
    Signed-off-by: Peter Rosin <address@hidden>

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

Summary of changes:
 lib/depcomp |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/lib/depcomp b/lib/depcomp
index 06b0882..4ebd5b3 100755
--- a/lib/depcomp
+++ b/lib/depcomp
@@ -1,7 +1,7 @@
 #! /bin/sh
 # depcomp - compile a program generating dependencies as side-effects
 
-scriptversion=2012-10-18.11; # UTC
+scriptversion=2013-05-30.07; # UTC
 
 # Copyright (C) 1999-2013 Free Software Foundation, Inc.
 
@@ -552,6 +552,7 @@ $ {
   G
   p
 }' >> "$depfile"
+  echo >> "$depfile" # make sure the fragment doesn't end with a backslash
   rm -f "$tmpdepfile"
   ;;
 


hooks/post-receive
-- 
GNU Automake



reply via email to

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