summaryrefslogtreecommitdiff
path: root/darcs-all
diff options
context:
space:
mode:
authorIan Lynagh <igloo@earth.li>2007-04-30 11:35:19 +0000
committerIan Lynagh <igloo@earth.li>2007-04-30 11:35:19 +0000
commit9bf5168492d49ea9b73e33f914422875cca74a92 (patch)
treeb6cbdf6839112825df49c17436a1b052f3cf0738 /darcs-all
parent3c506a6cb7a260a93f0ac272a6a3612c5586a5e1 (diff)
downloadhaskell-9bf5168492d49ea9b73e33f914422875cca74a92.tar.gz
Make boot handle getting the libraries
Diffstat (limited to 'darcs-all')
-rw-r--r--darcs-all7
1 files changed, 1 insertions, 6 deletions
diff --git a/darcs-all b/darcs-all
index 59e29e1c9d..4e67683355 100644
--- a/darcs-all
+++ b/darcs-all
@@ -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;
}