* Correct a bug that caused alien to ignore failing commands. Closes: #424858

This commit is contained in:
joey
2007-05-17 17:34:20 +00:00
parent 0f3f0ab92c
commit f81986d554
2 changed files with 5 additions and 3 deletions

View File

@@ -446,7 +446,8 @@ sub do {
}
else {
# parent
return (waitpid($pid, 0) > 0);
my $ret=(waitpid($pid, 0) > 0);
return ! $ret || ! $?;
}
}

5
debian/changelog vendored
View File

@@ -1,9 +1,10 @@
alien (8.67) UNRELEASED; urgency=low
alien (8.67) unstable; urgency=low
* Update the url to the web page, and remove several other broken urls from
the README.
* Correct a bug that caused alien to ignore failing commands. Closes: #424858
-- Joey Hess <joeyh@debian.org> Thu, 17 May 2007 00:10:53 -0400
-- Joey Hess <joeyh@debian.org> Thu, 17 May 2007 13:31:56 -0400
alien (8.66) unstable; urgency=low