diff options
author | Ian Lynagh <igloo@earth.li> | 2007-04-30 11:35:19 +0000 |
---|---|---|
committer | Ian Lynagh <igloo@earth.li> | 2007-04-30 11:35:19 +0000 |
commit | 9bf5168492d49ea9b73e33f914422875cca74a92 (patch) | |
tree | b6cbdf6839112825df49c17436a1b052f3cf0738 /darcs-all | |
parent | 3c506a6cb7a260a93f0ac272a6a3612c5586a5e1 (diff) | |
download | haskell-9bf5168492d49ea9b73e33f914422875cca74a92.tar.gz |
Make boot handle getting the libraries
Diffstat (limited to 'darcs-all')
-rw-r--r-- | darcs-all | 7 |
1 files changed, 1 insertions, 6 deletions
@@ -32,8 +32,6 @@ my $ignore_failure = 0; # --extra says we grab the extra libs with 'get'. It has no effect on # the other commands. my $extra = 0; -# --complete gets passed onto darcs get -my $complete = 0; # --nofib/--testsuite tell get to also grab the respective repos. # They have no effect on the other commands. my $nofib = 0; @@ -92,7 +90,7 @@ sub darcsgetpackage { sub darcsget { my $r_flags; - if (! $complete && ! grep /(?:--complete|--partial)/, @_) { + if (! grep /(?:--complete|--partial)/, @_) { warning("adding --partial, to override use --complete"); $r_flags = [@_, "--partial"]; } @@ -131,9 +129,6 @@ sub main { if ($arg eq "-q") { $verbose = 0; } - elsif ($arg eq "--complete") { - $complete = 1; - } elsif ($arg eq "--extra") { $extra = 1; } |