diff options
author | rubidium <rubidium@openttd.org> | 2008-11-16 21:37:41 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2008-11-16 21:37:41 +0000 |
commit | f4fd895631ba0d34835fc8e057a17c000e19f1f6 (patch) | |
tree | 3fe1a66232b124f82f2100f88efb505b42d66e8d | |
parent | 46bf0fadaa3a4fa763fbe55dd1d045b92e029585 (diff) | |
download | openttd-f4fd895631ba0d34835fc8e057a17c000e19f1f6.tar.xz |
(svn r14586) -Fix (r14580): missing mkdir causing make install to fail when there's no scripts directory already.
-rw-r--r-- | Makefile.bundle.in | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Makefile.bundle.in b/Makefile.bundle.in index eb3b7238d..998ffac89 100644 --- a/Makefile.bundle.in +++ b/Makefile.bundle.in @@ -143,6 +143,7 @@ install: bundle $(Q)install -d "$(INSTALL_DATA_DIR)/gm" $(Q)install -d "$(INSTALL_DATA_DIR)/data" $(Q)install -d "$(INSTALL_DATA_DIR)/lang" + $(Q)install -d "$(INSTALL_DATA_DIR)/scripts" $(Q)install -d "$(INSTALL_DOC_DIR)" ifeq ($(TTD), openttd.exe) $(Q)install -m 755 "$(BUNDLE_DIR)/$(TTD)" "$(INSTALL_BINARY_DIR)/${BINARY_NAME}.exe" |