summaryrefslogtreecommitdiff
path: root/darcs-all
diff options
context:
space:
mode:
authorIan Lynagh <igloo@earth.li>2007-09-14 13:26:58 +0000
committerIan Lynagh <igloo@earth.li>2007-09-14 13:26:58 +0000
commite05f9de137269701df667b69d741dfae616694f7 (patch)
tree96869c0174c1f79f638d231919dd0cffe4060276 /darcs-all
parenta28ba79a751ec22728e9bdf4184524d72b038339 (diff)
downloadhaskell-e05f9de137269701df667b69d741dfae616694f7.tar.gz
Refer to "boot" libs, not "core" libs
Diffstat (limited to 'darcs-all')
-rw-r--r--darcs-all6
1 files changed, 3 insertions, 3 deletions
diff --git a/darcs-all b/darcs-all
index 1e773c92f1..24ed6f482a 100644
--- a/darcs-all
+++ b/darcs-all
@@ -71,7 +71,7 @@ sub darcsall {
message "== $dir not present or not a repository; skipping";
}
}
- for my $pkg (`cat libraries/core-packages libraries/extra-packages`) {
+ for my $pkg (`cat libraries/boot-packages libraries/extra-packages`) {
chomp $pkg;
if (-d "libraries/$pkg") {
darcs (@_, "--repodir", "libraries/$pkg");
@@ -112,10 +112,10 @@ sub darcsget {
my @packages;
if ($extra) {
- @packages = `cat core-packages extra-packages`;
+ @packages = `cat boot-packages extra-packages`;
}
else {
- @packages = `cat core-packages`;
+ @packages = `cat boot-packages`;
}
for my $pkg (@packages) {