summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--darcs-all7
-rw-r--r--packages1
2 files changed, 7 insertions, 1 deletions
diff --git a/darcs-all b/darcs-all
index 483cd9df8f..5e78729468 100644
--- a/darcs-all
+++ b/darcs-all
@@ -114,7 +114,12 @@ sub darcsget {
$path = "$defaultrepo_base/$localpath";
}
else {
- $path = "$defaultrepo_base/$remotepath";
+ if ($remotepath =~ /^http:/) {
+ $path = $remotepath;
+ }
+ else {
+ $path = "$defaultrepo_base/$remotepath";
+ }
}
if (($tag eq "") || defined($tags{$tag})) {
diff --git a/packages b/packages
index 870ed30b8e..5c4d978342 100644
--- a/packages
+++ b/packages
@@ -3,6 +3,7 @@
# actually get built
. ghc git
utils/hsc2hs hsc2hs darcs
+utils/haddock http://code.haskell.org/haddock darcs
libraries/array packages/array darcs
libraries/base packages/base darcs
libraries/base3-compat packages/base3-compat darcs