libtool-commit
[Top][All Lists]
Advanced

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

[SCM] GNU Libtool branch, master, updated. v2.4.6-4-gde7b2cb


From: Pavel Raiskup
Subject: [SCM] GNU Libtool branch, master, updated. v2.4.6-4-gde7b2cb
Date: Thu, 24 Sep 2015 09:13:54 +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 Libtool".

The branch, master has been updated
       via  de7b2cb2b72f98329b231ceab2e98f21e8ddaa22 (commit)
      from  702a97fbb09bd7088a50f2b239016d1e32843c24 (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 de7b2cb2b72f98329b231ceab2e98f21e8ddaa22
Author: Pavel Raiskup <address@hidden>
Date:   Thu Sep 24 11:03:45 2015 +0200

    bootstrap: fix race in temporary Makefile
    
    Target 'bootstrap-deps' sometimes rebuilt $(bootstrap_files)
    a bit earlier than the cleanup target 'bootstrap-deps-prep' was
    invoked.  As a result, some of $(bootstrap_files) were missing.
    
    * Makefile.am (bootstrap-deps): Rebuild $(bootstrap_files) after
    bootstrap-deps-prep dependency.

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

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

diff --git a/Makefile.am b/Makefile.am
index 13dfc63..e4d6074 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -207,7 +207,9 @@ bootstrap_files = \
     $(ltversion_m4)
 
 .PHONY: bootstrap-deps bootstrap-deps-prep
-bootstrap-deps: bootstrap-deps-prep $(bootstrap_files)
+bootstrap-deps: bootstrap-deps-prep
+       $(MAKE) $(bootstrap_files)
+
 bootstrap-deps-prep:
 ## The following variables are substituted by 'bootstrap-dep-preps'
        @exit_cmd=:; \


hooks/post-receive
-- 
GNU Libtool



reply via email to

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