aboutsummaryrefslogtreecommitdiffstats
path: root/packdrake.pm
diff options
context:
space:
mode:
authorFrancois Pons <fpons@mandriva.com>2001-01-05 10:54:56 +0000
committerFrancois Pons <fpons@mandriva.com>2001-01-05 10:54:56 +0000
commit9d713c04e29b81e0f778f7d1861f600f63cf958a (patch)
treea37998e947cdcd9d4a42c8c37bfea2366760ac23 /packdrake.pm
parentf21d4c4049f44acdbefebb3e7a450ad30c6ea3c9 (diff)
downloadrpmtools-9d713c04e29b81e0f778f7d1861f600f63cf958a.tar
rpmtools-9d713c04e29b81e0f778f7d1861f600f63cf958a.tar.gz
rpmtools-9d713c04e29b81e0f778f7d1861f600f63cf958a.tar.bz2
rpmtools-9d713c04e29b81e0f778f7d1861f600f63cf958a.tar.xz
rpmtools-9d713c04e29b81e0f778f7d1861f600f63cf958a.zip
fixed printing to STDOUT while extracting (usefull if extracting to STDOUT :-)
Diffstat (limited to 'packdrake.pm')
-rw-r--r--packdrake.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/packdrake.pm b/packdrake.pm
index bdad288..0897131 100644
--- a/packdrake.pm
+++ b/packdrake.pm
@@ -363,7 +363,7 @@ sub extract_archive {
my $newfile = "$dir/$file";
- print "extracting $file\n";
+ print STDERR "extracting $file\n";
for ($packer->{data}{$file}[0]) {
/l/ && do { symlink_ $packer->{data}{$file}[1], $newfile; last; };
/d/ && do { mkdir_ $newfile; last; };