diff options
author | Daniel Hahler <git@thequod.de> | 2019-06-26 22:44:48 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-26 22:44:48 +0200 |
commit | a924650d986be67a40085a7db5d52e6710db9d1e (patch) | |
tree | 2f57336b80231af76138644f6f65839947b82ca0 | |
parent | c62690ccc4206525cbd223040909d2b3dc5158d4 (diff) | |
download | rneovim-a924650d986be67a40085a7db5d52e6710db9d1e.tar.gz rneovim-a924650d986be67a40085a7db5d52e6710db9d1e.tar.bz2 rneovim-a924650d986be67a40085a7db5d52e6710db9d1e.zip |
Makefile: fix regression with "make functionaltest-lua" (#10346)
Regressed in 69eb4fa0c.
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 |