summaryrefslogtreecommitdiffstats
path: root/lib/MGA/DrakISO/BuildClassic.pm
diff options
context:
space:
mode:
Diffstat (limited to 'lib/MGA/DrakISO/BuildClassic.pm')
-rwxr-xr-xlib/MGA/DrakISO/BuildClassic.pm15
1 files changed, 3 insertions, 12 deletions
diff --git a/lib/MGA/DrakISO/BuildClassic.pm b/lib/MGA/DrakISO/BuildClassic.pm
index 21c9cb2..503b044 100755
--- a/lib/MGA/DrakISO/BuildClassic.pm
+++ b/lib/MGA/DrakISO/BuildClassic.pm
@@ -103,19 +103,10 @@ sub prepare_files {
my $version = $build->{settings}{version};
my $tag = $build->{settings}{tag};
- # Process the list of files or directories supplied by the user. If the
- # repository is on a local disk, we just create soft links, otherwise
- # we have to download the files.
- my $repo_dir = $build->{settings}{repository} . '/' . $arch . '/';
- my $copy_dir = $build->get_builddir . '/';
- foreach (group_by2(@{$build->{copy_from_repo}})) {
- my ($src, $dst) = @$_;
- copy_or_link($repo_dir . $src, $copy_dir . $dst);
- }
+ my $files_dir = $build->get_builddir('files') . '/';
- # Automatically generate the remaining files.
- create_product_id($build, $copy_dir . $arch . '/product.id');
- create_index($build, $copy_dir . $arch . '/pkg-' . $version . '-' . $tag . '.idx');
+ create_product_id($build, $files_dir . $arch . '/product.id');
+ create_index($build, $files_dir . $arch . '/pkg-' . $version . '-' . $tag . '.idx');
}
###############################################################################