emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] master d08e8a1: Fix submake dependency bug with .h files


From: Paul Eggert
Subject: [Emacs-diffs] master d08e8a1: Fix submake dependency bug with .h files
Date: Thu, 25 Jun 2015 20:31:48 +0000

branch: master
commit d08e8a11e1a62e91a58829439f40e3741c5934b1
Author: Paul Eggert <address@hidden>
Commit: Paul Eggert <address@hidden>

    Fix submake dependency bug with .h files
    
    * src/Makefile.in ($(libsrc)/make-docfile$(EXEEXT)):
    Depend on $(lib)/libgnu.a, so that we build $(lib)/*/*.h
    before the submake in $(libsrc) would spin off a subsubmake
    for $(lib) in parallel with our submake for $(lib) (Bug#20894).
---
 src/Makefile.in |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/src/Makefile.in b/src/Makefile.in
index bfb911e..1fb770d 100644
--- a/src/Makefile.in
+++ b/src/Makefile.in
@@ -529,7 +529,7 @@ $(etc)/DOC: lisp.mk $(libsrc)/make-docfile$(EXEEXT) $(obj) 
$(lisp)
        $(AM_V_at)$(libsrc)/make-docfile -a $(etc)/DOC -d $(lispsource) \
          $(shortlisp)
 
-$(libsrc)/make-docfile$(EXEEXT):
+$(libsrc)/make-docfile$(EXEEXT): $(lib)/libgnu.a
        $(MAKE) -C $(libsrc) make-docfile$(EXEEXT)
 
 buildobj.h: Makefile



reply via email to

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