aboutsummaryrefslogtreecommitdiffstats
path: root/dumpdistribconf
diff options
context:
space:
mode:
authorRafael Garcia-Suarez <rgarciasuarez@mandriva.org>2005-11-15 11:22:04 +0000
committerRafael Garcia-Suarez <rgarciasuarez@mandriva.org>2005-11-15 11:22:04 +0000
commitb4eeb8c03a03ab7531103bd8b708d64d62264f9f (patch)
tree342ee3c7960298078547674b8c5269df0c643de5 /dumpdistribconf
parent6f3709831a2792579d350adde82640c36847a189 (diff)
downloadrpmtools-b4eeb8c03a03ab7531103bd8b708d64d62264f9f.tar
rpmtools-b4eeb8c03a03ab7531103bd8b708d64d62264f9f.tar.gz
rpmtools-b4eeb8c03a03ab7531103bd8b708d64d62264f9f.tar.bz2
rpmtools-b4eeb8c03a03ab7531103bd8b708d64d62264f9f.tar.xz
rpmtools-b4eeb8c03a03ab7531103bd8b708d64d62264f9f.zip
Use modules in the new namespace MDV::
Diffstat (limited to 'dumpdistribconf')
-rwxr-xr-xdumpdistribconf6
1 files changed, 3 insertions, 3 deletions
diff --git a/dumpdistribconf b/dumpdistribconf
index 2047072..c462606 100755
--- a/dumpdistribconf
+++ b/dumpdistribconf
@@ -4,7 +4,7 @@
use strict;
use Getopt::Long;
-use Distribconf::Build;
+use MDV::Distribconf::Build;
use Pod::Usage;
sub usage () {
@@ -24,8 +24,8 @@ GetOptions(
@ARGV or usage;
foreach (@ARGV) {
- print "Using root $_...\n";
- my $d = Distribconf::Build->new($_);
+ warn "Using root $_...\n";
+ my $d = MDV::Distribconf::Build->new($_);
$d->load or do {
warn "Can't load configuration from $_\n";
next;