From 8ff2af548303d311ce3591406111f77862875a60 Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Fri, 22 Jan 2016 12:25:14 +0100 Subject: Bundle the non core Perl module Text::Template Because we're using Text::Template and we know it's a non core Perl module, we choose to bundle it into our source, for convenience. external/perl/Downloaded.txt document what modules we choose to bundle this way and exactly where we downloaded it from. With this changes comes the transfer module for with_fallback. Reviewed-by: Rich Salz --- external/perl/transfer/Text/Template.pm | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 external/perl/transfer/Text/Template.pm (limited to 'external/perl/transfer') diff --git a/external/perl/transfer/Text/Template.pm b/external/perl/transfer/Text/Template.pm new file mode 100644 index 0000000000..13ed1eb1f7 --- /dev/null +++ b/external/perl/transfer/Text/Template.pm @@ -0,0 +1,12 @@ +#! /usr/bin/perl + +# Quick transfer to the downloaded Text::Template + +BEGIN { + use File::Spec::Functions; + use File::Basename; + use lib catdir(dirname(__FILE__), "..", ".."); + my $texttemplate = catfile("Text-Template-1.46", "lib", "Text", "Template.pm"); + require $texttemplate; +} +1; -- cgit v1.2.3