diff options
author | Glenn Morris <rgm@gnu.org> | 2014-06-28 16:29:06 -0700 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2014-06-28 16:29:06 -0700 |
commit | ef990bfd1f723e9a1be3079ffa2f96119db509bf (patch) | |
tree | 7f55d04c79c6fbd00b85e282b70ff32ba7ff5c7d /src/Makefile.in | |
parent | 8aa079fb75ff54590e6f3e2afad43e1594bd1e99 (diff) | |
download | emacs-ef990bfd1f723e9a1be3079ffa2f96119db509bf.tar.gz |
* src/Makefile.in: Fix thinko in previous.
Diffstat (limited to 'src/Makefile.in')
-rw-r--r-- | src/Makefile.in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Makefile.in b/src/Makefile.in index 27d52bdc041..ae16f023105 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -498,7 +498,9 @@ temacs$(EXEEXT): $(LIBXMENU) $(ALLOBJS) \ ## The following oldxmenu-related rules are only (possibly) used if ## HAVE_X11 && !USE_GTK, but there is no harm in always defining them. -$(lwlibdir)/liblw.a: + +## This one needs globals.h to exist, eg for Vinstallation_directory. +$(lwlibdir)/liblw.a: globals.h $(MAKE) -C $(lwlibdir) liblw.a $(oldXMenudir)/libXMenu11.a: $(MAKE) -C $(oldXMenudir) libXMenu11.a |