Просмотр исходного кода

Dpkg::BuildOptions: Really set DEB_BUILD_OPTIONS

Discovered by Daniel Shepler.
Frank Lichtenheld лет назад: 19
Родитель
Сommit
2e6845caaa
3 измененных файлов с 6 добавлено и 0 удалено
  1. 2 0
      ChangeLog
  2. 2 0
      debian/changelog
  3. 2 0
      scripts/Dpkg/BuildOptions.pm

+ 2 - 0
ChangeLog

@@ -2,6 +2,8 @@
 
 	* scripts/Dpkg/BuildOptions.pm (parse): Add
 	support for nocheck.
+	(set): Really set DEB_BUILD_OPTIONS. Discovered
+	by Daniel Shepler.
 
 2007-10-11  Guillem Jover  <guillem@debian.org>
 

+ 2 - 0
debian/changelog

@@ -37,6 +37,8 @@ dpkg (1.14.8) UNRELEASED; urgency=low
     Closes: #382673
   * Various small fixes to the manpages suggested by Helge Kreutzmann.
     Closes: #445858
+  * Fix Dpkg::BuildOptions (and thereby dpkg-buildpackage) to really
+    set DEB_BUILD_OPTIONS. Found by Daniel Shepler. Closes: #446119
 
   [ Guillem Jover ]
   * Use shipped perl modules when calling perl programs at build time.

+ 2 - 0
scripts/Dpkg/BuildOptions.pm

@@ -33,6 +33,8 @@ sub set {
 	    $env .= "$k,";
 	}
     }
+
+    $ENV{DEB_BUILD_OPTIONS} = $env if $env;
 }
 
 1;