summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDominique Dumont <dod@debian.org>2021-06-04 17:53:59 +0200
committerDominique Dumont <dod@debian.org>2021-06-04 17:53:59 +0200
commit7e502a37905559bbeddfd7f65202460c74ae8396 (patch)
treee011071553ab0589a3af51c064fc5abe0c99cf5d
parent28deca6dc9a7324e451d243ce7eed9f2d0fe1dcf (diff)
use EXPORT_OK instead of plain export
-rw-r--r--lib/Dpkg/Copyright/Scanner.pm6
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/Dpkg/Copyright/Scanner.pm b/lib/Dpkg/Copyright/Scanner.pm
index 1ac871e1..3acee5b1 100644
--- a/lib/Dpkg/Copyright/Scanner.pm
+++ b/lib/Dpkg/Copyright/Scanner.pm
@@ -20,7 +20,11 @@ no warnings qw/experimental::postderef experimental::signatures/;
binmode STDOUT, ':encoding(utf8)';
-our @EXPORT = qw(scan_files print_copyright __from_copyright_structure __to_copyright_structure);
+our @EXPORT_OK = qw(scan_files print_copyright
+ __create_tree_leaf_from_paths
+ __from_copyright_structure __pack_files
+ __pack_copyright __squash_tree_of_copyright_ids
+ __to_copyright_structure);
my $whitespace_list_delimiter = $ENV{'whitespace_list_delimiter'} || "\n ";