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 <prais...@redhat.com> 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