I fixed this locally as follows:

--- /usr/share/perl5/Debconf/ConfModule.pm~ 2011-06-23 03:01:31.000000000 -0400 +++ /usr/share/perl5/Debconf/ConfModule.pm 2011-12-10 14:45:22.500307649 -0500
@@ -112,7 +112,9 @@
        my $this=shift;

        debug developer => "<-- $_";
-       return 1 unless defined && ! /^\s*#/; # Skip blank lines, comments.
+       return 1 unless defined; # Skip empty input.
+       return 1 if /^\s*$/; # Skip blank lines.
+       return 1 if /^\s*#/; # Skip comments.
        chomp;
        my ($command, @params);
if (defined $this->client_capb and grep { $_ eq 'escape' } @{$this->client_capb}) {




--
To UNSUBSCRIBE, email to [email protected]
with a subject of "unsubscribe". Trouble? Contact [email protected]

Reply via email to