diff options
author | Loïc Hoguin <[email protected]> | 2018-12-04 23:26:08 +0100 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2018-12-04 23:38:57 +0100 |
commit | f221d99c4188a64352a77f28441985572313ed0f (patch) | |
tree | 097d92dad1a35efa84a153d5cbd6e603139e980e /core | |
parent | 57afa89365907d64cc30379ffb525dfcd664f75e (diff) | |
download | erlang.mk-f221d99c4188a64352a77f28441985572313ed0f.tar.gz erlang.mk-f221d99c4188a64352a77f28441985572313ed0f.tar.bz2 erlang.mk-f221d99c4188a64352a77f28441985572313ed0f.zip |
Remove some repetition in some output
Diffstat (limited to 'core')
-rw-r--r-- | core/deps.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/deps.mk b/core/deps.mk index ab509c3..611106d 100644 --- a/core/deps.mk +++ b/core/deps.mk @@ -642,7 +642,7 @@ endef define dep_target $(DEPS_DIR)/$(call dep_name,$1): $(eval DEP_NAME := $(call dep_name,$1)) - $(eval DEP_STR := $(if $(filter-out $1,$(DEP_NAME)),$1,"$1 ($(DEP_NAME))")) + $(eval DEP_STR := $(if $(filter $1,$(DEP_NAME)),$1,"$1 ($(DEP_NAME))")) $(verbose) if test -d $(APPS_DIR)/$(DEP_NAME); then \ echo "Error: Dependency" $(DEP_STR) "conflicts with application found in $(APPS_DIR)/$(DEP_NAME)." >&2; \ exit 17; \ @@ -651,7 +651,7 @@ $(DEPS_DIR)/$(call dep_name,$1): $(dep_verbose) $(call dep_fetch_$(strip $(call dep_fetch,$(1))),$(1)) $(verbose) if [ -f $(DEPS_DIR)/$(1)/configure.ac -o -f $(DEPS_DIR)/$(1)/configure.in ] \ && [ ! -f $(DEPS_DIR)/$(1)/configure ]; then \ - echo " AUTO " $(1); \ + echo " AUTO " $(DEP_STR); \ cd $(DEPS_DIR)/$(1) && autoreconf -Wall -vif -I m4; \ fi - $(verbose) if [ -f $(DEPS_DIR)/$(DEP_NAME)/configure ]; then \ |