diff options
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | erlang.mk | 1 | ||||
-rw-r--r-- | plugins/c_src.mk | 2 |
3 files changed, 2 insertions, 3 deletions
@@ -342,7 +342,7 @@ You can add extra `erl` options by defining the `SHELL_OPTS` variable. For more information please see `erl -man erl`. `SHELL_PATH` adds paths to the shell's library search path. By default -this option sets the path to `-pa ../$(PROJECT)/ebin $(DEPS_DIR)/*/ebin`. +this option sets the paths to `-pa ../$(PROJECT)/ebin $(DEPS_DIR)/*/ebin`. Contributing ------------ @@ -771,4 +771,3 @@ build-shell-deps: $(ALL_SHELL_DEPS_DIRS) shell: build-shell-deps $(gen_verbose) erl $(SHELL_PATH) $(SHELL_OPTS) - diff --git a/plugins/c_src.mk b/plugins/c_src.mk index 63ca6bc..2004b2d 100644 --- a/plugins/c_src.mk +++ b/plugins/c_src.mk @@ -48,7 +48,7 @@ $(C_SRC_ENV): -include $(C_SRC_ENV) else -ifneq ($(wildcard $(C_SRC_DIR),)) +ifneq ($(wildcard $(C_SRC_DIR)),) app:: $(MAKE) -C $(C_SRC_DIR) |