file. State that the languages should be listed alphabetically in
debian/changelog.
-2006-10-03 Brendan O'Dea <bod@debian.org>
-
- * scripts/controllib.pl (subprocerr): Require POSIX for WIFEXITED,
- WEXITSTATUS, WIFSIGNALED and WTERMSIG.
-
2006-09-27 Guillem Jover <guillem@debian.org>
* m4/compiler.m4: Add a new line at the end of the file, to cope with
read contains nul character" warning.
Closes: #376351, #375749, #376724, #377279
- [ Brendan O'Dea ]
- * Require POSIX inside subprocerr in controllib.pl. Closes: #390636
-
[ Added dpkg Translations ]
* Dzongkha (Kinley Tshering)
sub subprocerr {
local ($p) = @_;
- require POSIX;
- if (POSIX::WIFEXITED($?)) {
+ if (WIFEXITED($?)) {
die sprintf(_g("%s: failure: %s gave error exit status %s"),
- $progname, $p, POSIX::WEXITSTATUS($?))."\n";
- } elsif (POSIX::WIFSIGNALED($?)) {
+ $progname, $p, WEXITSTATUS($?))."\n";
+ } elsif (WIFSIGNALED($?)) {
die sprintf(_g("%s: failure: %s died from signal %s"),
- $progname, $p, POSIX::WTERMSIG($?))."\n";
+ $progname, $p, WTERMSIG($?))."\n";
} else {
die sprintf(_g("%s: failure: %s failed with unknown exit code %d"),
$progname, $p, $?)."\n";