X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=Makefile;h=a788dac4661d4ece4c90352da9ea0f23972b06f1;hb=dc5fc2a6d44009577f5d1ba6a403ed5e1ab22af5;hp=492cc77a03bcb8130d524b254d710f0b4afa17f9;hpb=091868cfcf246aca64d80c779fa48c903c24831d;p=ghc-hetmet.git diff --git a/Makefile b/Makefile index 492cc77..a788dac 100644 --- a/Makefile +++ b/Makefile @@ -69,14 +69,15 @@ SUBDIRS = gmp includes compat utils driver docs rts libraries compiler # Sanity check that all the boot libraries are in the tree, to catch # failure to run darcs-all. check-packages : - @for d in `cat libraries/boot-packages`; do \ + @ds=`cat libraries/boot-packages`;\ + for d in $$ds; do \ if test ! -d libraries/$$d; then \ echo "Looks like you're missing libraries/$$d,"; \ echo "maybe you haven't done './darcs-all get'?"; \ exit 1; \ fi \ done - @if test ! -e libraries/base/configure; then \ + @if test ! -f libraries/base/configure; then \ echo "Looks like you're missing base's configure script."; \ echo "Did you run 'sh boot' at the top level?"; \ exit 1; \