Change the transfer perl module so the real module gets properly registered
[openssl.git] / external / perl / transfer / Text / Template.pm
1 #! /usr/bin/perl
2
3 # Quick transfer to the downloaded Text::Template
4
5 BEGIN {
6     use File::Spec::Functions;
7     use File::Basename;
8     use lib catdir(dirname(__FILE__), "..", "..",
9                    "Text-Template-1.46", "lib");
10     use Text::Template;
11     shift @INC;                 # Takes away the effect of use lib
12 }
13 1;