emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] master 319eeeb: Get ‘./configure; make -C src emacs’ to w


From: Paul Eggert
Subject: [Emacs-diffs] master 319eeeb: Get ‘./configure; make -C src emacs’ to work
Date: Thu, 25 Jun 2015 06:35:12 +0000

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

    Get ‘./configure; make -C src emacs’ to work
    
    Without this fix, lib/fcntl.h isn't built in time (Bug#20894).
    * lib-src/Makefile.in (../lib/libgnu.a):
    * src/Makefile.in ($(lib)/libgnu.a): Build all, not libgnu.a.
---
 lib-src/Makefile.in |    2 +-
 src/Makefile.in     |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/lib-src/Makefile.in b/lib-src/Makefile.in
index 6b5d379..a175967 100644
--- a/lib-src/Makefile.in
+++ b/lib-src/Makefile.in
@@ -350,7 +350,7 @@ TAGS: etags${EXEEXT}
        etags *.[ch]
 
 ../lib/libgnu.a: $(config_h)
-       $(MAKE) -C ../lib libgnu.a
+       $(MAKE) -C ../lib all
 
 regex.o: $(srcdir)/../src/regex.c $(srcdir)/../src/regex.h $(config_h)
        $(AM_V_CC)$(CC) -c $(CPP_CFLAGS) $<
diff --git a/src/Makefile.in b/src/Makefile.in
index e5c5ddb..bfb911e 100644
--- a/src/Makefile.in
+++ b/src/Makefile.in
@@ -556,7 +556,7 @@ globals.h: gl-stamp; @true
 $(ALLOBJS): globals.h
 
 $(lib)/libgnu.a: $(config_h)
-       $(MAKE) -C $(lib) libgnu.a
+       $(MAKE) -C $(lib) all
 
 ## We have to create $(etc) here because init_cmdargs tests its
 ## existence when setting Vinstallation_directory (FIXME?).



reply via email to

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