This is an automated email from the git hooks/post-receive script.

guillem pushed a commit to branch main
in repository dpkg.

View the commit online:
https://git.dpkg.org/cgit/dpkg/dpkg.git/commit/?id=6e85ee7014459e2d448a6edddb1370986f7df065

commit 6e85ee7014459e2d448a6edddb1370986f7df065
Author: Guillem Jover <guil...@debian.org>
AuthorDate: Wed Oct 18 22:47:09 2023 +0200

    perl: Use qw() when importing symbols
---
 build-aux/gen-changelog      | 2 +-
 scripts/Dpkg/Source/Patch.pm | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/build-aux/gen-changelog b/build-aux/gen-changelog
index 769acf361..43483587c 100755
--- a/build-aux/gen-changelog
+++ b/build-aux/gen-changelog
@@ -21,7 +21,7 @@
 use strict;
 use warnings;
 
-use lib 'scripts';
+use lib qw(scripts);
 
 use List::Util qw(uniq);
 use Text::Wrap;
diff --git a/scripts/Dpkg/Source/Patch.pm b/scripts/Dpkg/Source/Patch.pm
index c454feb8c..57468fc4e 100644
--- a/scripts/Dpkg/Source/Patch.pm
+++ b/scripts/Dpkg/Source/Patch.pm
@@ -39,7 +39,7 @@ use File::Basename;
 use File::Spec;
 use File::Path qw(make_path);
 use File::Compare;
-use Fcntl ':mode';
+use Fcntl qw(:mode);
 use Time::HiRes qw(stat);
 
 use Dpkg;

-- 
Dpkg.Org's dpkg

Reply via email to