Changeset - r5495:10a67aaf090f
[Not reviewed]
master
0 1 0
glx - 18 years ago 2007-01-02 23:14:39
glx@openttd.org
(svn r7779) [Configure] -Fix: simplify scenario and scenario/heightmaps dir existance check
1 file changed with 2 insertions and 2 deletions:
0 comments (0 inline, 0 general)
Makefile.in
Show inline comments
 
@@ -171,10 +171,10 @@ endif
 
	$(Q)cp "$(ROOT_DIR)/media/openttd.64.png" "$(BUNDLE_DIR)/media/"
 
	$(Q)cp "$(ROOT_DIR)/media/openttd.32.xpm" "$(BUNDLE_DIR)/media/"
 
	$(Q)cp "$(ROOT_DIR)/media/openttd.32.bmp" "$(BUNDLE_DIR)/media/"
 
ifeq ($(shell if test -d $(BIN_DIR)/scenario/*.scn; then echo 1; fi), 1)
 
ifeq ($(shell if test -d "$(BIN_DIR)/scenario"; then echo 1; fi), 1)
 
	$(Q)cp "$(BIN_DIR)/scenario/"*.scn        "$(BUNDLE_DIR)/scenario/"
 
endif
 
ifeq ($(shell if test -d $(BIN_DIR)/scenario/heightmaps/*; then echo 1; fi), 1)
 
ifeq ($(shell if test -d "$(BIN_DIR)/scenario/heightmaps"; then echo 1; fi), 1)
 
	$(Q)cp "$(BIN_DIR)/scenario/heightmaps/"* "$(BUNDLE_DIR)/scenario/heightmap/"
 
endif
 

	
0 comments (0 inline, 0 general)