Last change
on this file since 83531 was 83531, checked in by vboxsync, 5 years ago |
setting svn:sync-process=export for openssl-1.1.1f, all files except tests
|
File size:
888 bytes
|
Line | |
---|
1 | # Copyright 2016-2018 The OpenSSL Project Authors. All Rights Reserved.
|
---|
2 | #
|
---|
3 | # Licensed under the OpenSSL license (the "License"). You may not use
|
---|
4 | # this file except in compliance with the License. You can obtain a copy
|
---|
5 | # in the file LICENSE in the source distribution or at
|
---|
6 | # https://www.openssl.org/source/license.html
|
---|
7 |
|
---|
8 | # Quick transfer to the downloaded Text::Template
|
---|
9 |
|
---|
10 | package transfer::Text::Template;
|
---|
11 | $VERSION = 1.46;
|
---|
12 |
|
---|
13 | BEGIN {
|
---|
14 | use File::Spec::Functions;
|
---|
15 | use File::Basename;
|
---|
16 | use lib catdir(dirname(__FILE__), "..", "..", "Text-Template-1.46", "lib");
|
---|
17 | # Some unpackers on VMS convert periods in directory names to underscores
|
---|
18 | use lib catdir(dirname(__FILE__), "..", "..", "Text-Template-1_46", "lib");
|
---|
19 | use Text::Template;
|
---|
20 | shift @INC; # Takes away the effect of use lib
|
---|
21 | shift @INC; # Takes away the effect of use lib
|
---|
22 | }
|
---|
23 | 1;
|
---|
Note:
See
TracBrowser
for help on using the repository browser.