From: Paul Eggert Date: Sun, 2 Sep 2012 14:26:47 +0000 (-0700) Subject: * Makefile.in (gl-stamp): Don't scan $(SOME_MACHINE_OBJECTS) X-Git-Tag: emacs-24.2.90~431 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=c04889f8e34e69ed496fcaaab285eac34e96acc1;p=emacs.git * Makefile.in (gl-stamp): Don't scan $(SOME_MACHINE_OBJECTS) when building globals.h, as the objects that are not built on this host are not needed to compile C files on this host. --- diff --git a/src/ChangeLog b/src/ChangeLog index 2ea13df1261..4986726d7c8 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,9 @@ +2012-09-02 Paul Eggert + + * Makefile.in (gl-stamp): Don't scan $(SOME_MACHINE_OBJECTS) + when building globals.h, as the objects that are not built on + this host are not needed to compile C files on this host. + 2012-09-02 Jan Djärv * gtkutil.h: Remove prototype for x_wm_set_size_hint. diff --git a/src/Makefile.in b/src/Makefile.in index a809216f095..fe4cff5d8cc 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -448,7 +448,7 @@ GLOBAL_SOURCES = $(base_obj:.o=.c) $(NS_OBJC_OBJ:.o=.m) gl-stamp: $(libsrc)/make-docfile$(EXEEXT) $(GLOBAL_SOURCES) @rm -f gl-tmp - $(libsrc)/make-docfile -d $(srcdir) -g $(SOME_MACHINE_OBJECTS) $(obj) > gl-tmp + $(libsrc)/make-docfile -d $(srcdir) -g $(obj) > gl-tmp $(srcdir)/../build-aux/move-if-change gl-tmp globals.h echo timestamp > $@