diff options
author | rubidium <rubidium@openttd.org> | 2010-08-21 21:07:34 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2010-08-21 21:07:34 +0000 |
commit | fba7ce392d753a1646919eebd7a277f87262e0e5 (patch) | |
tree | 3470664952d51704022951bc1f1adb73497e29dd | |
parent | fc700cc33c97d2b2d7f6c2143d756b1aab181c2d (diff) | |
download | openttd-fba7ce392d753a1646919eebd7a277f87262e0e5.tar.xz |
(svn r20590) -Fix: only unix2dos text files when generating the Windows installer
-rw-r--r-- | Makefile.bundle.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.bundle.in b/Makefile.bundle.in index 446890a52..08e7a33dc 100644 --- a/Makefile.bundle.in +++ b/Makefile.bundle.in @@ -156,7 +156,7 @@ bundle_dmg: bundle bundle_exe: all @echo '[BUNDLE] Creating $(BUNDLE_NAME).exe' $(Q)mkdir -p "$(BUNDLES_DIR)" - $(Q)unix2dos "$(ROOT_DIR)/docs/"* "$(ROOT_DIR)/readme.txt" "$(ROOT_DIR)/COPYING" "$(ROOT_DIR)/changelog.txt" "$(ROOT_DIR)/known-bugs.txt" + $(Q)unix2dos "$(ROOT_DIR)/docs/"*.txt "$(ROOT_DIR)/readme.txt" "$(ROOT_DIR)/COPYING" "$(ROOT_DIR)/changelog.txt" "$(ROOT_DIR)/known-bugs.txt" $(Q)cd $(ROOT_DIR)/os/windows/installer && makensis.exe //DVERSION_INCLUDE=version_$(PLATFORM).txt install.nsi $(Q)mv $(ROOT_DIR)/os/windows/installer/*$(PLATFORM).exe "$(BUNDLES_DIR)/$(BUNDLE_NAME).exe" |