From 50c9af503e20a61d1d071e87f615a996bdb27d8d Mon Sep 17 00:00:00 2001 From: Jonathan G Rennison Date: Wed, 25 Jul 2018 19:44:49 +0100 Subject: [PATCH] Makefile: Fix data dir not being created in `make install` target --- Makefile.bundle.in | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile.bundle.in b/Makefile.bundle.in index 4ad915ca0c..ffa6a442e3 100644 --- a/Makefile.bundle.in +++ b/Makefile.bundle.in @@ -183,6 +183,7 @@ install: bundle $(Q)install -d "$(INSTALL_DATA_DIR)/baseset" $(Q)install -d "$(INSTALL_DATA_DIR)/lang" $(Q)install -d "$(INSTALL_DATA_DIR)/scripts" + $(Q)install -d "$(INSTALL_DATA_DIR)/data" ifeq ($(TTD), openttd.exe) $(Q)install -m 755 "$(BUNDLE_DIR)/$(TTD)" "$(INSTALL_BINARY_DIR)/${BINARY_NAME}.exe" else