X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=darcs-all;h=579bc5cd15bdb2883da4fa8692933b0c66997a89;hb=6e2cffab037ee968dc49658ba75cc03beabcb769;hp=c711c77c4b4f3ac893c384030a5b716bcf879044;hpb=abd6576d1b73060cf9d02122e926c10b3b36ae73;p=ghc-hetmet.git diff --git a/darcs-all b/darcs-all index c711c77..579bc5c 100644 --- a/darcs-all +++ b/darcs-all @@ -9,14 +9,14 @@ default_lib_repo_root=$default_repo_root/packages quiet=NO -function message() +message() { if [ "$quiet" = "NO" ]; then echo $* fi } -function darcsall() +darcsall() { message "== running darcs $* at the top level" darcs $* @@ -30,15 +30,15 @@ function darcsall() done for pkg in `cat libraries/default-packages`; do if test -d libraries/$pkg; then - echo "== running darcs $* in libraries/$pkg" + message "== running darcs $* in libraries/$pkg" darcs $* --repodir libraries/$pkg else - echo "warning: $dir doesn't seem to exist, use 'darcs-all get' to get it" + echo "warning: $pkg doesn't seem to exist, use 'darcs-all get' to get it" fi done } -function darcsget() +darcsget() { case $* in *--partial*) ;; @@ -63,7 +63,7 @@ function darcsget() done } -if test ! -d _darcs -o ! -d ghc; then +if test ! -d _darcs -o ! -d compiler; then echo "error: darcs-all must be run from the top level of the ghc tree." exit 1; fi