aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAnne Nicolas <ennael@mageia.org>2012-06-06 09:15:21 +0000
committerAnne Nicolas <ennael@mageia.org>2012-06-06 09:15:21 +0000
commitfcd6356e95afe535722490fce1f520bec5d694fa (patch)
treec3514e6ce749f8feb902593ad145cb9fb6afae42
parentfed828197234fb7bc25abf22bf8cd6c0af9d50f6 (diff)
downloadbcd-fcd6356e95afe535722490fce1f520bec5d694fa.tar
bcd-fcd6356e95afe535722490fce1f520bec5d694fa.tar.gz
bcd-fcd6356e95afe535722490fce1f520bec5d694fa.tar.bz2
bcd-fcd6356e95afe535722490fce1f520bec5d694fa.tar.xz
bcd-fcd6356e95afe535722490fce1f520bec5d694fa.zip
use proper name for core media
-rw-r--r--BCD/Media.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/BCD/Media.pm b/BCD/Media.pm
index 7f6e7a2..faa921f 100644
--- a/BCD/Media.pm
+++ b/BCD/Media.pm
@@ -675,13 +675,13 @@ sub parse_copy_link {
foreach my $pkg (@list) {
if (-f "$data/$pkg") {
#print "$LOG $action $data/$pkg TO1 $builddir/media/main/$pkg\n";
- system("$action $data/$pkg $builddir/media/main/$pkg");
+ system("$action $data/$pkg $builddir/media/core/$pkg");
next;
} elsif (-f $data) {
my $package = basename($data);
chomp($package);
#print "$LOG $action $data TO2 $builddir/media/main/$package\n";
- system("$action $data $builddir/media/main/$package");
+ system("$action $data $builddir/media/core/$package");
next;
}
}