Your message dated Tue, 25 Jul 2006 22:58:37 -0400
with message-id <[EMAIL PROTECTED]>
and subject line really closing
has caused the attached Bug report to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere. Please contact me immediately.)
Debian bug tracking system administrator
(administrator, Debian Bugs database)
--- Begin Message ---
Package: debhelper
Version: 4.2.32
Severity: minor
Tags: patch
Dh_Lib::buildarch() function calls error($!) if dpkg-architecture is
not found (or there's some other problem with it), but $! is empty,
resulting in a silent and misleading exit in dh_* helper apps.
Current behavior:
$ perl ./dh_link etc/foo debian/debhelper/usr/lib/bar
dh_link:
$ echo $?
1
Suggested behavior:
$ perl ./dh_link etc/foo debian/debhelper/usr/lib/bar
dh_link: problem executing dpkg-architecture -qDEB_HOST_ARCH
$ echo $?
1
There's a number of simple ways to increase verbosity here, here's
just one:
--- Debian/Debhelper/Dh_Lib.pm Fri Jan 20 22:52:44 CET 2006
+++ /buildd/test/debhelper/Debian/Debhelper/Dh_Lib.pm Thu Mar 02 15:01:43 CET
2006
@@ -553,7 +553,8 @@
sub buildarch {
return $arch if defined $arch;
- $arch=`dpkg-architecture -qDEB_HOST_ARCH 2>/dev/null` ||
error($!);
+ $arch=`dpkg-architecture -qDEB_HOST_ARCH 2>/dev/null` ||
+ error("problem executing dpkg-architecture
-qDEB_HOST_ARCH");
chomp $arch;
return $arch;
}
--- End Message ---
--- Begin Message ---
Meant to close this bug with my last message to it..
--
see shy jo
signature.asc
Description: Digital signature
--- End Message ---