diff options
-rw-r--r-- | darcs-all | 7 | ||||
-rw-r--r-- | packages | 1 |
2 files changed, 7 insertions, 1 deletions
@@ -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})) { @@ -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 |