diff options
Diffstat (limited to 'test/Makefile')
-rw-r--r-- | test/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/Makefile b/test/Makefile index 7ea83acfff7..af503dcf59f 100644 --- a/test/Makefile +++ b/test/Makefile @@ -107,7 +107,7 @@ $(PIP_TOOLS_INSTALL_DONE): $(PYTHON_DEPENDS): requirements.txt @bash -c "source $(VENV_PATH)/bin/activate && \ - CUSTOM_COMPILE_COMMAND='make test-refresh-deps (or update requirements.txt)' \ + CUSTOM_COMPILE_COMMAND='$(MAKE) test-refresh-deps (or update requirements.txt)' \ python3 -m piptools compile -q --generate-hashes requirements.txt --output-file $@" $(PIP_INSTALL_DONE): $(PIP_TOOLS_INSTALL_DONE) $(PYTHON_DEPENDS) @@ -379,7 +379,7 @@ cov-post: wipe-cov $(BUILD_COV_DIR) .PHONY: cov cov: - make -C . cov-prep test cov-post + $(MAKE) -C . cov-prep test cov-post .PHONY: wipe-cov wipe-cov: wipe |