* Corrected checking of system() in Deb::prep. Closes: #63396

This commit is contained in:
joey
2000-05-02 02:45:25 +00:00
parent 86cef0cd9f
commit c3fab64d37
2 changed files with 7 additions and 1 deletions

View File

@@ -251,7 +251,7 @@ sub prep {
if (defined $this->patchfile) {
# The -f passed to zcat makes it pass uncompressed files
# through without error.
system("zcat -f ".$this->patchfile." | (cd $dir; patch -p1)") ||
system("zcat -f ".$this->patchfile." | (cd $dir; patch -p1)") &&
die "patch error: $!";
# Look for .rej files.
die "patch failed with .rej files; giving up"