diff options
author | rubidium <rubidium@openttd.org> | 2008-08-20 21:36:46 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2008-08-20 21:36:46 +0000 |
commit | 2c0976037878154494841b95093815a36f3d5d73 (patch) | |
tree | de6fdc5ff6178bfa51d6531cd3337a72570fefac /os/win32 | |
parent | ff749ab09dec34ba928338a08c16dc0d04f00e11 (diff) | |
download | openttd-2c0976037878154494841b95093815a36f3d5d73.tar.xz |
(svn r14115) -Codechange: add make bundle_exe which makes a windows installer and unify the files that go into the bundles (zip/gz/bz2 etc) and installer.
Diffstat (limited to 'os/win32')
-rw-r--r-- | os/win32/installer/install.nsi | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/os/win32/installer/install.nsi b/os/win32/installer/install.nsi index 7e7f20519..2e5d300a1 100644 --- a/os/win32/installer/install.nsi +++ b/os/win32/installer/install.nsi @@ -106,7 +106,6 @@ Section "!OpenTTD" Section1 ; Copy language files SetOutPath "$INSTDIR\lang\" File ${PATH_ROOT}bin\lang\*.lng - File ${PATH_ROOT}src\lang\english.txt ; Copy data files SetOutPath "$INSTDIR\data\" @@ -131,7 +130,6 @@ Section "!OpenTTD" Section1 ; Copy executable File /oname=openttd.exe ${BINARY_DIR}\openttd.exe - File ${PATH_ROOT}objs\strgen\strgen.exe ; Delete old files from the main dir. they are now placed in data/ and lang/ @@ -248,7 +246,6 @@ Section "Uninstall" Delete "$INSTDIR\readme.txt" Delete "$INSTDIR\known-bugs.txt" Delete "$INSTDIR\openttd.exe" - Delete "$INSTDIR\strgen.exe" Delete "$INSTDIR\COPYING" Delete "$INSTDIR\INSTALL.LOG" Delete "$INSTDIR\crash.log" @@ -293,7 +290,6 @@ Section "Uninstall" ; Language files Delete "$INSTDIR\lang\*.lng" - Delete "$INSTDIR\lang\english.txt" ; Remove remaining directories RMDir "$SMPROGRAMS\$SHORTCUTS\Extras\" |