]> err.no Git - dpkg/commitdiff
dpkg-buildpackage: Rename warnable_errors to warnable_error in
authorGuillem Jover <guillem@debian.org>
Mon, 24 Sep 2007 20:05:36 +0000 (23:05 +0300)
committerGuillem Jover <guillem@debian.org>
Mon, 24 Sep 2007 20:07:58 +0000 (23:07 +0300)
Fix the name to the correct variable name exported from controllib.pl.

ChangeLog
scripts/dpkg-buildpackage.pl [changed mode: 0644->0755]

index 0362a3efb583ffb831b20aaa58fa13422f0279cb..900490a54ec8b8571b509e27fd5e833dda92d2b6 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2007-09-24  Guillem Jover  <guillem@debian.org>
+
+       * scripts/dpkg-buildpackage.pl ($warnable_errors): Rename to ...
+       ($warnable_error): ... this, and declare as 'our'.
+
 2007-09-23  Frank Lichtenheld  <djpig@debian.org>
 
        * scripts/dpkg-buildpackage.pl: Add new option
old mode 100644 (file)
new mode 100755 (executable)
index f412492..40154c6
@@ -13,6 +13,8 @@ use Dpkg::BuildOptions;
 push (@INC, $dpkglibdir);
 require 'controllib.pl';
 
+our $warnable_error;
+
 textdomain("dpkg-dev");
 
 sub showversion {
@@ -95,7 +97,7 @@ if ( ( ($ENV{GNUPGHOME} && -e $ENV{GNUPGHOME})
 }
 
 my ($admindir, $signkey, $forcesigninterface, $usepause, $noclean,
-    $warnable_errors, $sourcestyle, $cleansource,
+    $sourcestyle, $cleansource,
     $binaryonly, $sourceonly, $since, $maint,
     $changedby, $desc, $parallel);
 my (@checkbuilddep_args, @passopts, @tarignore);
@@ -187,10 +189,10 @@ while (@ARGV) {
     } elsif (/^-C(.*)$/) {
        $desc = $1;
     } elsif (/^-W$/) {
-       $warnable_errors = 1;
+       $warnable_error = 1;
        push @passopts, '-W';
     } elsif (/^-E$/) {
-       $warnable_errors = 0;
+       $warnable_error = 0;
        push @passopts, '-E';
     } else {
        usageerr(sprintf(_g("unknown option or argument %s"), $_));