diff options
author | cg <chengang31@gmail.com> | 2013-03-23 17:30:38 +0200 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2013-03-23 17:30:38 +0200 |
commit | d7158313e21be4fb986627b38c2a5decc5844374 (patch) | |
tree | 200860f1351fa22763124b6b807400aeeed2c357 /lib-src/makefile.w32-in | |
parent | 45f1d3626030a8e46408a23ae92a606665fc7325 (diff) | |
download | emacs-d7158313e21be4fb986627b38c2a5decc5844374.tar.gz |
Fix MSVC compilation problem in lib-src.
lib-src/makefile.w32-in (LIB_SRC): Move before first use.
Diffstat (limited to 'lib-src/makefile.w32-in')
-rw-r--r-- | lib-src/makefile.w32-in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib-src/makefile.w32-in b/lib-src/makefile.w32-in index 8d016bc16be..5ec559ff985 100644 --- a/lib-src/makefile.w32-in +++ b/lib-src/makefile.w32-in @@ -27,6 +27,7 @@ LOCAL_FLAGS = -DNO_LDAV=1 -DNO_ARCHIVES=1 -I../lib \ -I../nt/inc -I../src $(EMACS_EXTRA_C_FLAGS) LIBS = $(BASE_LIBS) $(ADVAPI32) +LIB_SRC = . # The following target is used by makefile.w32-in files in other directories. make-docfile: $(BLD)/make-docfile.exe @@ -360,7 +361,6 @@ TAGS: $(BLD)/etags.exe *.c *.h ### DEPENDENCIES ### EMACS_ROOT = .. -LIB_SRC = . SRC = $(EMACS_ROOT)/src NT_INC = $(EMACS_ROOT)/nt/inc GNU_LIB = $(EMACS_ROOT)/lib |