diff options
author | Paul Eggert <eggert@cs.ucla.edu> | 2017-03-17 21:24:24 -0700 |
---|---|---|
committer | Paul Eggert <eggert@cs.ucla.edu> | 2017-03-17 21:24:52 -0700 |
commit | eb8116f70c8aa9fc5766f1616dc0a57e8b8ff8f9 (patch) | |
tree | 3d86dfb4e2c0813541fd6e22b53e0a4451f6c8ce /lib | |
parent | 3139914f51615f169f54887123d9d5308095ab49 (diff) | |
download | emacs-eb8116f70c8aa9fc5766f1616dc0a57e8b8ff8f9.tar.gz emacs-eb8116f70c8aa9fc5766f1616dc0a57e8b8ff8f9.tar.bz2 emacs-eb8116f70c8aa9fc5766f1616dc0a57e8b8ff8f9.zip |
Port out-of-source builds to windows-nt
Problem reported by Angelo Graziosi in:
http://lists.gnu.org/archive/html/emacs-devel/2017-03/msg00431.html
* lib/Makefile.in: Prepend $(srcdir) to ../nt/gnulib-cfg.mk,
to handle out-of-source builds if windows-nt.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Makefile.in b/lib/Makefile.in index 5c199270acc..bef5a8cb5a4 100644 --- a/lib/Makefile.in +++ b/lib/Makefile.in @@ -57,7 +57,7 @@ ALL_CFLAGS= \ SYSTEM_TYPE = @SYSTEM_TYPE@ ifeq ($(SYSTEM_TYPE),windows-nt) - include ../nt/gnulib-cfg.mk + include $(srcdir)/../nt/gnulib-cfg.mk endif include gnulib.mk ifneq ($(SYSTEM_TYPE),windows-nt) |