2016-01-22 11:25:14 +00:00
|
|
|
#! /usr/bin/perl
|
|
|
|
|
|
|
|
# Quick transfer to the downloaded Text::Template
|
|
|
|
|
|
|
|
BEGIN {
|
|
|
|
use File::Spec::Functions;
|
|
|
|
use File::Basename;
|
2016-02-12 03:23:15 +00:00
|
|
|
use lib catdir(dirname(__FILE__), "..", "..", "Text-Template-1.46", "lib");
|
|
|
|
# Some unpackers on VMS convert periods in directory names to underscores
|
|
|
|
use lib catdir(dirname(__FILE__), "..", "..", "Text-Template-1_46", "lib");
|
2016-02-04 18:41:56 +00:00
|
|
|
use Text::Template;
|
|
|
|
shift @INC; # Takes away the effect of use lib
|
2016-02-12 03:23:15 +00:00
|
|
|
shift @INC; # Takes away the effect of use lib
|
2016-01-22 11:25:14 +00:00
|
|
|
}
|
|
|
|
1;
|