summaryrefslogtreecommitdiffstats
path: root/RPM4/examples/hdlist2sdb
diff options
context:
space:
mode:
Diffstat (limited to 'RPM4/examples/hdlist2sdb')
-rwxr-xr-xRPM4/examples/hdlist2sdb8
1 files changed, 4 insertions, 4 deletions
diff --git a/RPM4/examples/hdlist2sdb b/RPM4/examples/hdlist2sdb
index e1fe387..e38af93 100755
--- a/RPM4/examples/hdlist2sdb
+++ b/RPM4/examples/hdlist2sdb
@@ -19,7 +19,7 @@
# $Id$
use strict;
-use Hdlist;
+use RPM4;
use Getopt::Long;
GetOptions (
@@ -31,11 +31,11 @@ Synch rpm found into given hdlist into a database.
Usefull to create a solve rpm database.
";
-$dbpath ||= Hdlist::expand("%_solve_dbpath");
+$dbpath ||= RPM4::expand("%_solve_dbpath");
-Hdlist::add_macro("_dbpath $dbpath");
+RPM4::add_macro("_dbpath $dbpath");
-my $db = Hdlist::newdb(1) or die "Can't open DB";
+my $db = RPM4::newdb(1) or die "Can't open DB";
my %rpmlist;
my %indb;