diff options
author | nanardon <nanardon@971eb68f-4bfb-0310-8326-d2484c010a4c> | 2005-10-08 17:31:44 +0000 |
---|---|---|
committer | nanardon <nanardon@971eb68f-4bfb-0310-8326-d2484c010a4c> | 2005-10-08 17:31:44 +0000 |
commit | 4c9b180f05693f3e9261914d2b7360789344e2c0 (patch) | |
tree | bfe8e645b8594ddd0b41c2449627693c0693c20d /RPM4/examples/hdlistq | |
parent | 297cd66d7ba0ab41beb08897af99b963d2cb18d9 (diff) | |
download | perl-RPM4-4c9b180f05693f3e9261914d2b7360789344e2c0.tar perl-RPM4-4c9b180f05693f3e9261914d2b7360789344e2c0.tar.gz perl-RPM4-4c9b180f05693f3e9261914d2b7360789344e2c0.tar.bz2 perl-RPM4-4c9b180f05693f3e9261914d2b7360789344e2c0.tar.xz perl-RPM4-4c9b180f05693f3e9261914d2b7360789344e2c0.zip |
- code was still using Hdlist :\
git-svn-id: svn+ssh://haiku.zarb.org/home/projects/rpm4/svn/trunk@42 971eb68f-4bfb-0310-8326-d2484c010a4c
Diffstat (limited to 'RPM4/examples/hdlistq')
-rwxr-xr-x | RPM4/examples/hdlistq | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/RPM4/examples/hdlistq b/RPM4/examples/hdlistq index 1e2489a..31d7e55 100755 --- a/RPM4/examples/hdlistq +++ b/RPM4/examples/hdlistq @@ -19,7 +19,7 @@ # $Id$ use strict; -use Hdlist; +use RPM4; use Getopt::Long; my $qf = "%{NAME}-%{VERSION}-%{RELEASE}.%{ARCH}\n"; @@ -45,7 +45,7 @@ Description :\n%{DESCRIPTION} my ($type, $name, $flag, $ENV, $dep); if ($cond) { my @d = split(/ +/, $cond); - $dep = Hdlist::newdep(@d); + $dep = RPM4::newdep(@d); } ($go_res && @ARGV) or die |