summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/contrib
diff options
context:
space:
mode:
authorSteven Noonan <steven@uplinklabs.net>2009-10-25 16:12:48 -0700
committerSteven Noonan <steven@uplinklabs.net>2009-10-25 16:12:48 -0700
commit43b622e8b58068c3a46cea806140b19757c92b65 (patch)
tree525e126b3604faf2999b8deb42d63e09bb86568f /crawl-ref/source/contrib
parent887083d4555a91b093245f47717074557975177a (diff)
downloadcrawl-ref-43b622e8b58068c3a46cea806140b19757c92b65.tar.gz
crawl-ref-43b622e8b58068c3a46cea806140b19757c92b65.zip
contrib/Makefile: improve readibility of directory check error
Signed-off-by: Steven Noonan <steven@uplinklabs.net>
Diffstat (limited to 'crawl-ref/source/contrib')
-rw-r--r--crawl-ref/source/contrib/Makefile4
1 files changed, 4 insertions, 0 deletions
diff --git a/crawl-ref/source/contrib/Makefile b/crawl-ref/source/contrib/Makefile
index 8b2d151b04..de42beb387 100644
--- a/crawl-ref/source/contrib/Makefile
+++ b/crawl-ref/source/contrib/Makefile
@@ -13,7 +13,11 @@ clean distclean:
$(SUBDIRS):
@if [ ! -x $@ ]; then \
+ echo "*******************************************************************************"; \
+ echo; \
echo "The '$@' folder is missing. Have you run 'git submodule update --init'?"; \
+ echo; \
+ echo "*******************************************************************************"; \
exit 1; \
fi
@cd $@ && \