diff options
author | Krzysztof Jurewicz <[email protected]> | 2018-05-30 21:01:33 +0200 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2018-05-31 16:09:38 +0200 |
commit | dfe090d1b44771019a59cf79a14e0957d8d5fc16 (patch) | |
tree | 67ff7a0f1de03293b831fa14743e537c3662059e /plugins | |
parent | 9fff0a15b957e8dcf768475372e0c959e576d13b (diff) | |
download | erlang.mk-dfe090d1b44771019a59cf79a14e0957d8d5fc16.tar.gz erlang.mk-dfe090d1b44771019a59cf79a14e0957d8d5fc16.tar.bz2 erlang.mk-dfe090d1b44771019a59cf79a14e0957d8d5fc16.zip |
Add $(TEST_DIR) to the default value of SHELL_PATHS
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/shell.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/shell.mk b/plugins/shell.mk index 00d2c52..c9e9975 100644 --- a/plugins/shell.mk +++ b/plugins/shell.mk @@ -7,7 +7,7 @@ # Configuration. SHELL_ERL ?= erl -SHELL_PATHS ?= $(CURDIR)/ebin $(APPS_DIR)/*/ebin $(DEPS_DIR)/*/ebin +SHELL_PATHS ?= $(CURDIR)/ebin $(APPS_DIR)/*/ebin $(DEPS_DIR)/*/ebin $(TEST_DIR) SHELL_OPTS ?= ALL_SHELL_DEPS_DIRS = $(addprefix $(DEPS_DIR)/,$(SHELL_DEPS)) |