summaryrefslogtreecommitdiffstats
path: root/RPM4/examples/hbuildspec
diff options
context:
space:
mode:
Diffstat (limited to 'RPM4/examples/hbuildspec')
-rwxr-xr-xRPM4/examples/hbuildspec6
1 files changed, 3 insertions, 3 deletions
diff --git a/RPM4/examples/hbuildspec b/RPM4/examples/hbuildspec
index d0204db..ae26bbd 100755
--- a/RPM4/examples/hbuildspec
+++ b/RPM4/examples/hbuildspec
@@ -19,7 +19,7 @@
# $Id$
use strict;
-use Hdlist;
+use RPM4;
use Getopt::Long;
(@ARGV) or die
@@ -28,10 +28,10 @@ Give rpms filename produce by a specfile
";
foreach (@ARGV) {
- my $spec = Hdlist::specnew($_);
+ my $spec = RPM4::specnew($_);
my @err = $spec->check();
if (@err) {
- foreach (Hdlist::print_rpmpb(@err)) {
+ foreach (RPM4::print_rpmpb(@err)) {
print "\t$_\n";
}
} else {