summaryrefslogtreecommitdiffstats
path: root/Configure
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2017-11-03 21:43:07 +0100
committerRichard Levitte <levitte@openssl.org>2017-11-05 22:58:10 +0100
commit470a601705673102b9d33359408bef6334f07078 (patch)
tree56d86f143e681d1d52c4d9bab5d4646976807bbe /Configure
parentb81cfa07ada850fd287d0a0c82ba280907f18ce7 (diff)
Consolidate the locations where we have our internal perl modules
Instead of having perl modules under test/testlib and util, consolidate them all to be inside util/perl. (this is an adaptation of the part of #4069 that wasn't included in #4666) Reviewed-by: Andy Polyakov <appro@openssl.org> (Merged from https://github.com/openssl/openssl/pull/4667)
Diffstat (limited to 'Configure')
-rwxr-xr-xConfigure4
1 files changed, 2 insertions, 2 deletions
diff --git a/Configure b/Configure
index 5b235fe39e..3d4b2cd347 100755
--- a/Configure
+++ b/Configure
@@ -12,7 +12,7 @@
use 5.10.0;
use strict;
use FindBin;
-use lib "$FindBin::Bin/util";
+use lib "$FindBin::Bin/util/perl";
use File::Basename;
use File::Spec::Functions qw/:DEFAULT abs2rel rel2abs/;
use File::Path qw/mkpath/;
@@ -1481,7 +1481,7 @@ if ($builder eq "unified") {
my $template =
Text::Template->new(TYPE => 'FILE',
SOURCE => catfile($sourced, $f),
- PREPEND => qq{use lib "$FindBin::Bin/util";});
+ PREPEND => qq{use lib "$FindBin::Bin/util/perl";});
die "Something went wrong with $sourced/$f: $!\n" unless $template;
my @text =
split /^/m,