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 | 525d216adce878b5d8b5c4af5ec6d87e55cf006e (patch) | |
tree | 33eabb703a17c749bf5d3e3e278e467e09fcab03 | |
parent | 1771089d048194a40d6594f2e3b8262882f68aaf (diff) | |
download | openttd-525d216adce878b5d8b5c4af5ec6d87e55cf006e.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 |