diff options
author | James E Keenan <jkeenan@cpan.org> | 2021-07-24 14:14:54 +0000 |
---|---|---|
committer | James E Keenan <jkeenan@cpan.org> | 2021-08-10 20:47:15 +0000 |
commit | 7e12ee61fac08d210b4f192160a1de75771f27c9 (patch) | |
tree | dccd7bf152749608637701c5ec60763ed47cadb0 /installhtml | |
parent | 68327975be0888d6cf8425ec1fb62510c1321310 (diff) | |
download | perl-7e12ee61fac08d210b4f192160a1de75771f27c9.tar.gz |
installhtml: new location for imports of helper functions
As reported by sisyphus in
https://www.nntp.perl.org/group/perl.perl5.porters/2021/07/msg260930.html
Bump $Pod::Html::VERSION.
Diffstat (limited to 'installhtml')
-rw-r--r-- | installhtml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/installhtml b/installhtml index 9f6ef7e60a..11dd922346 100644 --- a/installhtml +++ b/installhtml @@ -8,7 +8,8 @@ use File::Path qw(remove_tree); use File::Spec::Functions qw(rel2abs no_upwards); use Getopt::Long; # for command-line parsing use Cwd; -use Pod::Html 1.23 qw(anchorify relativize_url); +use Pod::Html 1.32; +use Pod::Html::Util 1.32 qw(anchorify relativize_url); =head1 NAME |