diff options
author | Richard Levitte <levitte@openssl.org> | 2018-07-09 21:10:10 +0200 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2018-07-10 16:32:20 +0200 |
commit | 4e351ca92e3a1f447cef3d2e330f13941f9412c6 (patch) | |
tree | f642d09f77c101dcb9f3f0fcbd5408fa6b9272f8 /util/dofile.pl | |
parent | Existing transfer modules must have a package and a $VERSION (diff) | |
download | openssl-4e351ca92e3a1f447cef3d2e330f13941f9412c6.tar.xz openssl-4e351ca92e3a1f447cef3d2e330f13941f9412c6.zip |
util/dofile.pl: require Text::Template 1.46 or newer
The reason is that we override Text::Template::append_text_to_output(),
and it didn't exist before Text::Template 1.46.
Fixes #6641
Reviewed-by: Rich Salz <rsalz@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/6682)
Diffstat (limited to 'util/dofile.pl')
-rw-r--r-- | util/dofile.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/dofile.pl b/util/dofile.pl index b0e20681dd..c3bc9ba9d6 100644 --- a/util/dofile.pl +++ b/util/dofile.pl @@ -40,7 +40,7 @@ package OpenSSL::Template; use File::Basename; use File::Spec::Functions; use lib "$FindBin::Bin/perl"; -use with_fallback qw(Text::Template); +use with_fallback "Text::Template 1.46"; #use parent qw/Text::Template/; use vars qw/@ISA/; |