diff options
author | rubidium <rubidium@openttd.org> | 2009-08-22 19:04:20 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2009-08-22 19:04:20 +0000 |
commit | 402df1486eb26e7b38eb1bbbfafc8e68756eb079 (patch) | |
tree | 6e3a3caea85fc87518b9d83e5afbc60e0059b005 | |
parent | ed91b0e2f3111eb7892b758b96221656f262da22 (diff) | |
download | openttd-402df1486eb26e7b38eb1bbbfafc8e68756eb079.tar.xz |
(svn r17264) -Fix (r17261): bundle making for OSX failed
-rw-r--r-- | Makefile.bundle.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.bundle.in b/Makefile.bundle.in index 8fd1b898f..b7c8d2f8d 100644 --- a/Makefile.bundle.in +++ b/Makefile.bundle.in @@ -44,11 +44,11 @@ bundle: all @echo '[BUNDLE] Constructing bundle' $(Q)rm -rf "$(BUNDLE_DIR)" $(Q)mkdir -p "$(BUNDLE_DIR)" - $(Q)mkdir -p "$(BUNDLE_DIR)/ai" $(Q)mkdir -p "$(BUNDLE_DIR)/docs" $(Q)mkdir -p "$(BUNDLE_DIR)/media" $(Q)mkdir -p "$(BUNDLE_DIR)/scripts" $(Q)mkdir -p "$(TTD_DIR)" + $(Q)mkdir -p "$(AI_DIR)" $(Q)mkdir -p "$(DATA_DIR)" $(Q)mkdir -p "$(LANG_DIR)" ifdef OSXAPP |