summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rwxr-xr-xlib/MGA/DrakISO/BuildRoot.pm2
-rw-r--r--lib/MGA/DrakISO/Utils.pm2
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/MGA/DrakISO/BuildRoot.pm b/lib/MGA/DrakISO/BuildRoot.pm
index c762f50..252699a 100755
--- a/lib/MGA/DrakISO/BuildRoot.pm
+++ b/lib/MGA/DrakISO/BuildRoot.pm
@@ -205,7 +205,7 @@ sub copy_files_to {
$dest = $root . '/' . $dest;
mkdir_p($dest =~ m|/$| ? $dest : dirname($dest));
my @sources = MGA::DrakISO::Utils::glob__($build->{settings}{config_root} . '/' . $source);
- print STDERR "copying @sources to $dest\n" if $::verbose > 1;
+ print "copying @sources to $dest\n" if $::verbose > 1;
cp_af(@sources, $dest);
my $o_perm = $o_opts && $o_opts->{mode};
chmod $o_perm, $dest if $o_perm;
diff --git a/lib/MGA/DrakISO/Utils.pm b/lib/MGA/DrakISO/Utils.pm
index 35fae93..6aee33f 100644
--- a/lib/MGA/DrakISO/Utils.pm
+++ b/lib/MGA/DrakISO/Utils.pm
@@ -53,7 +53,7 @@ sub run_ {
my $targetarch = delete $options->{targetarch};
unshift @cmd, 'setarch', $targetarch if $targetarch;
}
- print STDERR "running " . (exists $options->{root} && "(in chroot) ") . join(' ', @cmd) . "\n" if $::verbose > 1;
+ print "running " . (exists $options->{root} && "(in chroot) ") . join(' ', @cmd) . "\n" if $::verbose > 1;
run_program::raw($options, @cmd);
}