Your message dated Tue, 26 Aug 2008 16:42:51 +0200
with message-id <[EMAIL PROTECTED]>
and subject line DEB_BUILD_OPTIONS is whitespace-separated since 1.14.21
has caused the Debian Bug report #486937,
regarding DEB_BUILD_OPTIONS must be whitespace-separated
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 this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [EMAIL PROTECTED]
immediately.)
--
486937: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=486937
Debian Bug Tracking System
Contact [EMAIL PROTECTED] with problems
--- Begin Message ---
Package: dpkg-dev
Version: 1.14.20
Severity: serious
Tags: patch
Policy 3.8.0.1, section 4.9.1, on DEB_BUILD_OPTIONS:
If multiple flags are given, they must be separated by whitespace.
dpkg-buildpackage uses "," separators instead, which breaks any rules
file that follows the example code in Policy.
Presumably this bug is not RC for lenny, as the relevant Policy text is
new to 3.8.0.
diff -urN dpkg-1.14.20.orig/scripts/Dpkg/BuildOptions.pm
dpkg-1.14.20/scripts/Dpkg/BuildOptions.pm
--- dpkg-1.14.20.orig/scripts/Dpkg/BuildOptions.pm 2008-06-18
02:33:30.000000000 -0500
+++ dpkg-1.14.20/scripts/Dpkg/BuildOptions.pm 2008-06-18 23:45:52.000000000
-0500
@@ -38,13 +38,13 @@
$overwrite = 1 if not defined($overwrite);
my $env = $overwrite ? '' : $ENV{DEB_BUILD_OPTIONS}||'';
- if ($env) { $env .= ',' }
+ if ($env) { $env .= ' ' }
while (my ($k, $v) = each %$opts) {
if ($v) {
- $env .= "$k=$v,";
+ $env .= "$k=$v ";
} else {
- $env .= "$k,";
+ $env .= "$k ";
}
}
--- End Message ---
--- Begin Message ---
Version: 1.14.21
This has been fixed in the 1.14.21 version that just got uploaded (but
lacked a Closes: entry).
Cheers,
--
Raphaël Hertzog
Le best-seller français mis à jour pour Debian Etch :
http://www.ouaza.com/livre/admin-debian/
--- End Message ---