aboutsummaryrefslogtreecommitdiffstats
path: root/core/deps.mk
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2015-09-29 15:13:27 +0200
committerLoïc Hoguin <[email protected]>2015-09-29 15:13:27 +0200
commitc148e886257b695d8c61a4aaf10aee3cf4a770d1 (patch)
treeade51a4420ab9f11178453f9fdfb245be6244de6 /core/deps.mk
parentfe5c42fb818acf9ad6ca6589ea182dfbfbaa5427 (diff)
downloaderlang.mk-c148e886257b695d8c61a4aaf10aee3cf4a770d1.tar.gz
erlang.mk-c148e886257b695d8c61a4aaf10aee3cf4a770d1.tar.bz2
erlang.mk-c148e886257b695d8c61a4aaf10aee3cf4a770d1.zip
Improve a few comments and messages
Diffstat (limited to 'core/deps.mk')
-rw-r--r--core/deps.mk6
1 files changed, 3 insertions, 3 deletions
diff --git a/core/deps.mk b/core/deps.mk
index 6a14114..00cc05f 100644
--- a/core/deps.mk
+++ b/core/deps.mk
@@ -61,8 +61,8 @@ endif
if [ -f $$dep/GNUmakefile ] || [ -f $$dep/makefile ] || [ -f $$dep/Makefile ]; then \
$(MAKE) -C $$dep IS_DEP=1 || exit $$?; \
else \
- echo "ERROR: No Makefile to build dependency $$dep."; \
- exit 1; \
+ echo "Error: No Makefile to build dependency $$dep."; \
+ exit 2; \
fi \
fi \
done
@@ -521,7 +521,7 @@ define dep_fetch_hex
endef
define dep_fetch_fail
- echo "Unknown or invalid dependency: $(1). Please consult the erlang.mk README for instructions." >&2; \
+ echo "Error: Unknown or invalid dependency: $(1)." >&2; \
exit 78;
endef