diff options
author | smatz <smatz@openttd.org> | 2008-10-14 19:47:28 +0000 |
---|---|---|
committer | smatz <smatz@openttd.org> | 2008-10-14 19:47:28 +0000 |
commit | 14d8689e6675bfc8298ac5c81083149b801e10ec (patch) | |
tree | 6160f41a70c019286e46316b48c07992116676ed /Makefile.msvc | |
parent | a999bb322775b80f44bfc6e0f1886851d4bfc410 (diff) | |
download | openttd-14d8689e6675bfc8298ac5c81083149b801e10ec.tar.xz |
(svn r14467) -Fix [FS#2350](r14443): use '~' instead of '#' as sed separator, it could be understood in a wrong way by shell
Diffstat (limited to 'Makefile.msvc')
-rw-r--r-- | Makefile.msvc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.msvc b/Makefile.msvc index 73be806c5..826ff8543 100644 --- a/Makefile.msvc +++ b/Makefile.msvc @@ -20,7 +20,7 @@ SRC_DIR = "$(ROOT_DIR)/src" BUNDLE_DIR = "$(ROOT_DIR)/bundle" BUNDLES_DIR = "$(ROOT_DIR)/bundles" TTD = "openttd.exe" -TARGET := $(shell echo $(PLATFORM) | sed "s/win64/x64/;s/win32/Win32/") +TARGET := $(shell echo $(PLATFORM) | sed "s~win64~x64~;s~win32~Win32~") all: $(Q)cp objs/$(TARGET)/Release/$(TTD) $(BIN_DIR)/$(TTD) |