diff options
author | smatz <smatz@openttd.org> | 2010-12-23 11:02:47 +0000 |
---|---|---|
committer | smatz <smatz@openttd.org> | 2010-12-23 11:02:47 +0000 |
commit | 4a2efd136ec8b6f70110bf28800643b79f977e6d (patch) | |
tree | deea8a28772bc727698ca731afcfafb403750052 | |
parent | e2a7ecbcaee04068c5504f0b6aa2be1b26e3f298 (diff) | |
download | openttd-4a2efd136ec8b6f70110bf28800643b79f977e6d.tar.xz |
(svn r21606) -Fix (r14636): DOS binary was broken when not stripping
-rw-r--r-- | Makefile.src.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.src.in b/Makefile.src.in index 6c5702e49..cb5bb5d19 100644 --- a/Makefile.src.in +++ b/Makefile.src.in @@ -262,11 +262,11 @@ else endif ifdef STRIP $(Q)$(STRIP) $@ +endif ifeq ($(OS), DOS) $(E) '$(STAGE) Adding CWSDPMI stub to $@' $(Q)$(ROOT_DIR)/os/dos/make_dos_binary_selfcontained.sh $(SRC_OBJS_DIR)/$@ endif -endif # The targets to compile the endian-code |