aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--packdrake.pm5
1 files changed, 3 insertions, 2 deletions
diff --git a/packdrake.pm b/packdrake.pm
index 0897131..2902d37 100644
--- a/packdrake.pm
+++ b/packdrake.pm
@@ -382,7 +382,7 @@ sub extract_archive {
#- of uncompress executable.
foreach (sort { $a <=> $b } keys %extract_table) {
local *OUTPUT;
- if (open OUTPUT, "-|") {
+ if (my $pid = open OUTPUT, "-|") {
#- $curr_off is used to handle the reading in a pipe and simulating
#- a seek on it as done by catsksz, so last file position is
#- last byte not read (ie last block read start + last block read size).
@@ -394,13 +394,14 @@ sub extract_archive {
catsksz(\*OUTPUT, $off - $curr_off, $siz, \*FILE);
$curr_off = $off + $siz;
}
+ waitpid $pid, 0;
} else {
local *BUNZIP2;
open BUNZIP2, "| $packer->{uncompress}";
local *ARCHIVE;
open ARCHIVE, "<$packer->{archive}" or die "packdrake: cannot open archive $packer->{archive}\n";
catsksz(\*ARCHIVE, $_, $extract_table{$_}[0], \*BUNZIP2);
- exit 0;
+ exec 'true';
}
}
}