Axel Beckert pushed to branch master at lintian / lintian
Commits:
f03fc15a by Axel Beckert at 2023-03-05T16:26:04+01:00
Fix "Use of uninitialized value $LINTIAN_CFG" in debug output
- - - - -
1 changed file:
- bin/lintian
Changes:
=====================================
bin/lintian
=====================================
@@ -614,7 +614,7 @@ unless (@ARGV || $selected{'packages-from-file'}) {
if ($selected{debug}) {
say {*STDERR} encode_utf8("Lintian v$ENV{LINTIAN_VERSION}");
say {*STDERR} encode_utf8("Lintian root directory: $ENV{LINTIAN_BASE}");
- say {*STDERR} encode_utf8("Configuration file: $LINTIAN_CFG");
+ say {*STDERR} encode_utf8('Configuration file: '.($LINTIAN_CFG//'(none)'));
}
if (defined $selected{LINTIAN_PROFILE}) {
View it on GitLab:
https://salsa.debian.org/lintian/lintian/-/commit/f03fc15a45df4965e374b1e3a40c51cf6fe545ed
--
View it on GitLab:
https://salsa.debian.org/lintian/lintian/-/commit/f03fc15a45df4965e374b1e3a40c51cf6fe545ed
You're receiving this email because of your account on salsa.debian.org.