summaryrefslogtreecommitdiff
path: root/boot
diff options
context:
space:
mode:
authorIan Lynagh <igloo@earth.li>2007-04-18 12:45:36 +0000
committerIan Lynagh <igloo@earth.li>2007-04-18 12:45:36 +0000
commit9a7ac3c44ff2f03a2395f246a3ebaf975426f0ff (patch)
treeba0ac7213cf57ab460b0f61ba961713fe9704a6f /boot
parent22e7be5ffc35fd36de65955bb2a5ab79ed04ec5e (diff)
downloadhaskell-9a7ac3c44ff2f03a2395f246a3ebaf975426f0ff.tar.gz
Check we have all the corelibs when we boot
Diffstat (limited to 'boot')
-rw-r--r--boot10
1 files changed, 10 insertions, 0 deletions
diff --git a/boot b/boot
index aa906266f6..d983d2f560 100644
--- a/boot
+++ b/boot
@@ -2,6 +2,16 @@
set -e
+for d in `cat libraries/core-packages`
+do
+ if test ! -d libraries/$d
+ then
+ echo "Looks like you're missing libraries/$d,"
+ echo "maybe you haven't done 'sh darcs-all get'?"
+ exit 1
+ fi
+done
+
autoreconf
for lib in libraries/*; do