From 9a7ac3c44ff2f03a2395f246a3ebaf975426f0ff Mon Sep 17 00:00:00 2001 From: Ian Lynagh Date: Wed, 18 Apr 2007 12:45:36 +0000 Subject: [PATCH] Check we have all the corelibs when we boot --- boot | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/boot b/boot index aa90626..d983d2f 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 -- 1.7.10.4