diff options
author | Jean-Sébastien Pédron <[email protected]> | 2015-09-09 11:22:02 +0200 |
---|---|---|
committer | Jean-Sébastien Pédron <[email protected]> | 2015-09-09 11:22:02 +0200 |
commit | 6145f681238780dfb0b5e28de0b30b3b0bdbd59b (patch) | |
tree | fe3241743ca98dc8e260d2aaf8b5cbc7766b212f /test | |
parent | b9c0bd643746ddd3424a91f6dd3cb6ad299cd342 (diff) | |
download | erlang.mk-6145f681238780dfb0b5e28de0b30b3b0bdbd59b.tar.gz erlang.mk-6145f681238780dfb0b5e28de0b30b3b0bdbd59b.tar.bz2 erlang.mk-6145f681238780dfb0b5e28de0b30b3b0bdbd59b.zip |
test/Makefile: Use $(MAKE) instead of hardcoding `make`
Diffstat (limited to 'test')
-rw-r--r-- | test/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Makefile b/test/Makefile index b987cd8..d32358c 100644 --- a/test/Makefile +++ b/test/Makefile @@ -494,7 +494,7 @@ core-app-help: build clean-core-app-help $t $(MAKE) -C $(APP) -f erlang.mk bootstrap-lib $v $i "Run 'make help' and check that it prints help" - $t test -n "`make -C $(APP) help` | grep Usage" + $t test -n "`$(MAKE) -C $(APP) help` | grep Usage" core-app-hrl: build clean-core-app-hrl |