diff options
author | Bernhard M. Wiedemann <unknown> | 2017-05-22 09:03:53 +1000 |
---|---|---|
committer | Bernhard M. Wiedemann <unknown> | 2017-05-22 09:03:53 +1000 |
commit | 5d70e707dc420d64b089cbdeb556fda11415f9ad (patch) | |
tree | 99b4de651015945f960b0c2e52ca5f0a8a87361b /win32/makefile | |
parent | 85206bb0a6b0b292e61aa2be602dc0586d4063dd (diff) | |
download | scintilla-mirror-5d70e707dc420d64b089cbdeb556fda11415f9ad.tar.gz |
Bug [#1946]. Builds are made with a sorted list of lexers to be more reproducible.
Diffstat (limited to 'win32/makefile')
-rw-r--r-- | win32/makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win32/makefile b/win32/makefile index 22819c4f0..1af28c03f 100644 --- a/win32/makefile +++ b/win32/makefile @@ -70,7 +70,7 @@ analyze: deps: $(CXX) -MM $(CXXFLAGS) *.cxx ../src/*.cxx ../lexlib/*.cxx ../lexers/*.cxx >deps.mak -LEXOBJS:=$(addsuffix .o,$(basename $(notdir $(wildcard ../lexers/Lex*.cxx)))) +LEXOBJS:=$(addsuffix .o,$(basename $(sort $(notdir $(wildcard ../lexers/Lex*.cxx))))) BASEOBJS = \ |