aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Hahler <git@thequod.de>2019-06-26 22:44:48 +0200
committerGitHub <noreply@github.com>2019-06-26 22:44:48 +0200
commita924650d986be67a40085a7db5d52e6710db9d1e (patch)
tree2f57336b80231af76138644f6f65839947b82ca0
parentc62690ccc4206525cbd223040909d2b3dc5158d4 (diff)
downloadrneovim-a924650d986be67a40085a7db5d52e6710db9d1e.tar.gz
rneovim-a924650d986be67a40085a7db5d52e6710db9d1e.tar.bz2
rneovim-a924650d986be67a40085a7db5d52e6710db9d1e.zip
Makefile: fix regression with "make functionaltest-lua" (#10346)
Regressed in 69eb4fa0c.
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 3310219ea2..6e09d0ea25 100644
--- a/Makefile
+++ b/Makefile
@@ -93,9 +93,9 @@ build/.ran-third-party-cmake::
touch $@
ifeq ($(call filter-true,$(USE_BUNDLED)),)
-build/.ran-third-party-cmake:: $(DEPS_BUILD_DIR)
$(DEPS_BUILD_DIR):
- mkdir -p $(DEPS_BUILD_DIR)
+ mkdir -p "$@"
+build/.ran-third-party-cmake:: $(DEPS_BUILD_DIR)
cd $(DEPS_BUILD_DIR) && \
$(CMAKE_PRG) -G '$(BUILD_TYPE)' $(BUNDLED_CMAKE_FLAG) $(BUNDLED_LUA_CMAKE_FLAG) \
$(DEPS_CMAKE_FLAGS) $(THIS_DIR)/third-party