grep-commit
[Top][All Lists]
Advanced

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

grep branch, master, updated. v2.9-65-ge88a270


From: Jim Meyering
Subject: grep branch, master, updated. v2.9-65-ge88a270
Date: Fri, 14 Oct 2011 07:15:37 +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 "grep".

The branch, master has been updated
       via  e88a270d07c56567a042899256abc5c4804fc9d8 (commit)
      from  fb205d2ab461b45188d55e70957574af8533d58e (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 -----------------------------------------------------------------
http://git.savannah.gnu.org/cgit/grep.git/commit/?id=e88a270d07c56567a042899256abc5c4804fc9d8


commit e88a270d07c56567a042899256abc5c4804fc9d8
Author: Stefano Lattarini <address@hidden>
Date:   Thu Oct 13 13:41:22 2011 +0200

    distcheck: ensure dist-hook fails if syntax-check fails
    
    * Makefile.am (run-syntax-check): Fix logic, to ensure that
    the recipe of this target returns a non-zero exit status if
    "make syntax-check" fails.

diff --git a/Makefile.am b/Makefile.am
index a13f262..e9005d7 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -31,7 +31,7 @@ EXTRA_DIST =          \
 # Run syntax-check rules before creating a distribution tarball.
 .PHONY: run-syntax-check
 run-syntax-check:
-       $(AM_V_GEN)test -d .git && $(MAKE) syntax-check || :
+       $(AM_V_GEN)test ! -d .git || $(MAKE) syntax-check
 
 # Arrange so that .tarball-version appears only in the distribution
 # tarball, and never in a checked-out repository.

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

Summary of changes:
 Makefile.am |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
grep



reply via email to

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