diff options
author | Ian Lynagh <igloo@earth.li> | 2007-04-18 12:45:36 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2007-04-18 12:45:36 +0000 |
commit | 9a7ac3c44ff2f03a2395f246a3ebaf975426f0ff (patch) | |
tree | ba0ac7213cf57ab460b0f61ba961713fe9704a6f /boot | |
parent | 22e7be5ffc35fd36de65955bb2a5ab79ed04ec5e (diff) | |
download | haskell-9a7ac3c44ff2f03a2395f246a3ebaf975426f0ff.tar.gz |
Check we have all the corelibs when we boot
Diffstat (limited to 'boot')
-rw-r--r-- | boot | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -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 |