aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2014-08-15 13:10:43 +0200
committerLoïc Hoguin <[email protected]>2014-08-15 13:10:43 +0200
commit6d9515fa66e3f2298f50d16614cc90a3930d4e92 (patch)
tree83cab7c9d8d9b6720b6763aaf5d05737faded412 /core
parentc2e423040596efd8267a701c87090188a3109fe7 (diff)
parenteb8a5a8678e6ec69c7bc64dfac01863d006be76f (diff)
downloaderlang.mk-6d9515fa66e3f2298f50d16614cc90a3930d4e92.tar.gz
erlang.mk-6d9515fa66e3f2298f50d16614cc90a3930d4e92.tar.bz2
erlang.mk-6d9515fa66e3f2298f50d16614cc90a3930d4e92.zip
Merge branch 'add-invalid-dep-error-msg' of git://github.com/derek121/erlang.mk
Diffstat (limited to 'core')
-rw-r--r--core/deps.mk1
1 files changed, 1 insertions, 0 deletions
diff --git a/core/deps.mk b/core/deps.mk
index f15ae74..1c1892f 100644
--- a/core/deps.mk
+++ b/core/deps.mk
@@ -47,6 +47,7 @@ define dep_fetch
git clone -n -- $$$$REPO $(DEPS_DIR)/$(1); \
cd $(DEPS_DIR)/$(1) && git checkout -q $$$$COMMIT; \
else \
+ echo "Unknown or invalid dependency: $(1). Please consult the erlang.mk README for instructions." >&2; \
exit 78; \
fi
endef