autoconf-commit
[Top][All Lists]
Advanced

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

[SCM] GNU Autoconf source repository branch, master, updated. v2.63-199-


From: Ralf Wildenhues
Subject: [SCM] GNU Autoconf source repository branch, master, updated. v2.63-199-g541df95
Date: Sun, 16 Nov 2008 22:15:22 +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 Autoconf source repository".

http://git.sv.gnu.org/gitweb/?p=autoconf.git;a=commitdiff;h=541df95c2eb3e31f3ee0177b02f40467e65ba2aa

The branch, master has been updated
       via  541df95c2eb3e31f3ee0177b02f40467e65ba2aa (commit)
      from  fde7ee974a05b89d0a34b6492ea19cdbfc36b713 (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 541df95c2eb3e31f3ee0177b02f40467e65ba2aa
Author: Ralf Wildenhues <address@hidden>
Date:   Sun Nov 16 23:03:29 2008 +0100

    Use a different workaround for an automake quirk.
    
    * tests/Makefile.am (AUTOMAKE_OPTIONS): Remove.
    (distclean_generic): New helper variable, to fool automake.
    ($(distclean_generic)): Depend on clean-local, to prevent
    the race in the two rules with accessing and removing
    $(TESTSUITE).
    Report by Eric Blake.
    
    Signed-off-by: Ralf Wildenhues <address@hidden>

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

Summary of changes:
 ChangeLog         |    8 ++++++++
 tests/Makefile.am |    9 ++++-----
 2 files changed, 12 insertions(+), 5 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index cdce7ec..bf0e871 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,13 @@
 2008-11-16  Ralf Wildenhues  <address@hidden>
 
+       Use a different workaround for an automake quirk.
+       * tests/Makefile.am (AUTOMAKE_OPTIONS): Remove.
+       (distclean_generic): New helper variable, to fool automake.
+       ($(distclean_generic)): Depend on clean-local, to prevent
+       the race in the two rules with accessing and removing
+       $(TESTSUITE).
+       Report by Eric Blake.
+
        * lib/m4sugar/m4sh.m4 (_AS_VAR_ARITH_PREPARE): Simplify, avoid
        unbalanced parentheses from last change.
        Spotted by Eric Blake, fix suggested by Paolo Bonzini.
diff --git a/tests/Makefile.am b/tests/Makefile.am
index 01acf3a..0556b29 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -127,12 +127,11 @@ atconfig: $(top_builddir)/config.status
 # if found, attempts to run it.  But the distclean-generic rule may
 # be running in parallel, and it removes $(DISTCLEANFILES) which
 # includes $(TESTSUITE).  This is the Automake rule, plus our
-# dependency, and we silence the warning from 'automake -Wall'.
+# dependency, and we silence the warning from 'automake -Wall' by
+# hiding the dependency behind a variable.
 # TODO - fix this if newer automake accomodates the dependency.
-AUTOMAKE_OPTIONS = -Wno-override
-distclean-generic: clean-local
-       -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
-       -test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES)
+distclean_generic = distclean-generic
+$(distclean_generic): clean-local
 
 clean-local:
        test ! -f $(TESTSUITE) || $(SHELL) $(TESTSUITE) --clean


hooks/post-receive
--
GNU Autoconf source repository




reply via email to

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