automake-commit
[Top][All Lists]
Advanced

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

[Automake-commit] [SCM] GNU Automake branch, branch-1.13.2, updated. v1.


From: Stefano Lattarini
Subject: [Automake-commit] [SCM] GNU Automake branch, branch-1.13.2, updated. v1.13.1b-48-g425fe1e
Date: Wed, 01 May 2013 15:10:12 +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=425fe1e87a78985c0d51ebb185793e57cdd433da

The branch, branch-1.13.2 has been updated
       via  425fe1e87a78985c0d51ebb185793e57cdd433da (commit)
      from  d432f067fb1569c4127b86c8d7e157e3687115f2 (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 425fe1e87a78985c0d51ebb185793e57cdd433da
Author: Stefano Lattarini <address@hidden>
Date:   Wed May 1 17:06:42 2013 +0200

    tests: avoid one tricky use of "make -e"
    
    Which was causing a spurious failure on FreeBSD.  Not particularly
    surprising, given how brittle "make -e" is in general ...
    
    * t/cxx-lt-demo.sh: Instead of forcing $(CC) to be 'false' by
    exporting "CC=false" in the environment and then passing the '-e'
    option to make, do so by passing "CC=false" on the make command
    line, both directly and using AM_MAKEFLAGS.
    
    Signed-off-by: Stefano Lattarini <address@hidden>

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

Summary of changes:
 t/cxx-lt-demo.sh |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/t/cxx-lt-demo.sh b/t/cxx-lt-demo.sh
index 8afc974..b778725 100755
--- a/t/cxx-lt-demo.sh
+++ b/t/cxx-lt-demo.sh
@@ -122,7 +122,9 @@ std::string target (void)
 END
 
 ./configure
-CC=false $MAKE -e
+# Creative quoting and redundant use of eval to avoid spurious
+# 'maintainer-check' failures.
+eval \$'MAKE CC=false AM_MAKEFLAGS=CC=false'
 ls -l . src lib # For debugging.
 $MAKE test-objs
 VERBOSE=yes $MAKE check-TESTS


hooks/post-receive
-- 
GNU Automake



reply via email to

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