diff options
author | truelight <truelight@openttd.org> | 2007-10-06 22:08:04 +0000 |
---|---|---|
committer | truelight <truelight@openttd.org> | 2007-10-06 22:08:04 +0000 |
commit | b125aee7fdbe6f93fdd3897d4c91df0c7544d509 (patch) | |
tree | 33eabb703a17c749bf5d3e3e278e467e09fcab03 | |
parent | 2f702f8e41d40e3ec539c97a2d9f3c34a8f30be0 (diff) | |
download | openttd-b125aee7fdbe6f93fdd3897d4c91df0c7544d509.tar.xz |
(svn r11220) -Fix r11217: not all gmakes allow "" in ifeq (go figure)
-rw-r--r-- | Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index 35ef93cba..bef6b502a 100644 --- a/Makefile.in +++ b/Makefile.in @@ -210,7 +210,7 @@ endif ifeq ($(shell if test -n "`ls -l \"$(BIN_DIR)/scenario/heightmaps/\"* 2>/dev/null`"; then echo 1; fi), 1) $(Q)cp "$(BIN_DIR)/scenario/heightmaps/"* "$(BUNDLE_DIR)/scenario/heightmap/" endif -ifeq ($(TTD), "openttd.exe") +ifeq ($(TTD), openttd.exe) $(Q)unix2dos "$(BUNDLE_DIR)/docs/"* "$(BUNDLE_DIR)/readme.txt" "$(BUNDLE_DIR)/COPYING" endif |