summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNiels Thykier <niels@thykier.net>2022-07-27 10:35:07 +0000
committerNiels Thykier <niels@thykier.net>2022-10-03 05:59:21 +0000
commit6538f289065b5e5983eeaf46c056a85a1b451e21 (patch)
treedecd0a2b3a26d1b7abcae41329fc16d9f446cc81
parent71ba52f458d5d173091b32d038751e144e385b5e (diff)
Dh_Getopt: Fix duplicated "warning" in output
Signed-off-by: Niels Thykier <niels@thykier.net>
-rw-r--r--lib/Debian/Debhelper/Dh_Getopt.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Debian/Debhelper/Dh_Getopt.pm b/lib/Debian/Debhelper/Dh_Getopt.pm
index 6d954057..52d66e1e 100644
--- a/lib/Debian/Debhelper/Dh_Getopt.pm
+++ b/lib/Debian/Debhelper/Dh_Getopt.pm
@@ -228,7 +228,7 @@ sub parseopts {
@ARGV_extra=split_options_string($ENV{DH_OPTIONS});
my $ret=getoptions(\@ARGV_extra, %params);
if (!$ret) {
- warning("warning: ignored unknown options in DH_OPTIONS");
+ warning("ignored unknown options in DH_OPTIONS");
}
}