summaryrefslogtreecommitdiff
path: root/scripts/dpkg-mergechangelogs.pl
diff options
context:
space:
mode:
authorGuillem Jover <guillem@debian.org>2019-03-27 03:12:04 +0100
committerGuillem Jover <guillem@debian.org>2019-10-12 16:37:22 +0200
commitc3808237c6be5316d170aa928dd755390b667af9 (patch)
treed9aee378244d7895a4989479b5e624dfbffc8be6 /scripts/dpkg-mergechangelogs.pl
parent4006a1dd98f1d57a420f95177d74ffcf6b2ffc95 (diff)
downloaddpkg-c3808237c6be5316d170aa928dd755390b667af9.tar.gz
scripts: Switch Getopt::Long from bundling to bundling_values
This got introduced after a request so that we could switch our tools to a safe subset of the bundling logic, so let's enable it now that it is available in the minimum supported perl version. Bundling is in general unsafe, and not future-proof, as new options might gain arguments which would then get misinterpreted, we should not really be using it. But bundling the value into the option is a common pattern and should be allowed.
Diffstat (limited to 'scripts/dpkg-mergechangelogs.pl')
-rwxr-xr-xscripts/dpkg-mergechangelogs.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/dpkg-mergechangelogs.pl b/scripts/dpkg-mergechangelogs.pl
index 20b33dc75..0f4d85165 100755
--- a/scripts/dpkg-mergechangelogs.pl
+++ b/scripts/dpkg-mergechangelogs.pl
@@ -20,7 +20,7 @@ use warnings;
use strict;
use Scalar::Util qw(blessed);
-use Getopt::Long qw(:config posix_default bundling no_ignorecase);
+use Getopt::Long qw(:config posix_default bundling_values no_ignorecase);
use Dpkg ();
use Dpkg::Changelog::Debian;