summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--RPM4/lib/RPM4/Index.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/RPM4/lib/RPM4/Index.pm b/RPM4/lib/RPM4/Index.pm
index c94d0aa..d804e8b 100644
--- a/RPM4/lib/RPM4/Index.pm
+++ b/RPM4/lib/RPM4/Index.pm
@@ -23,7 +23,7 @@ use warnings;
use RPM4;
use RPM4::Header;
-use Packdrakeng;
+use MDV::Packdrakeng;
use File::Temp qw(tempfile);
@@ -35,7 +35,7 @@ sub buildindex {
$pid = open($h_synthesis, "| gzip --best > '$options{synthesis}'") or return 0;
}
if ($options{hdlist}) {
- $pack = Packdrakeng->new(
+ $pack = MDV::Packdrakeng->new(
archive => $options{hdlist},
comp_level => $options{complevel},
) or return 0;
@@ -104,7 +104,7 @@ sub buildhdlist {
sub parsehdlist {
my (%options) = @_;
- my $pack = Packdrakeng->open(archive => $options{hdlist}) or return 0;
+ my $pack = MDV::Packdrakeng->open(archive => $options{hdlist}) or return 0;
my (undef, $files, undef) = $pack->getcontent();
pipe(my $in, my $out);