summaryrefslogtreecommitdiffstats
path: root/Configurations
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2016-02-19 23:49:05 +0100
committerRichard Levitte <levitte@openssl.org>2016-02-20 09:27:21 +0100
commitef3c88cf893983e3028dae91b9f68a751600ebad (patch)
treebec26bcc16c3389957d0410727306e817512ead4 /Configurations
parent874efa9f81c1414725088324b2b602d17dc291db (diff)
VMS static libraries have the extension .OLB, not .LIB
Object LiBrary Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'Configurations')
-rw-r--r--Configurations/descrip.mms.tmpl4
1 files changed, 2 insertions, 2 deletions
diff --git a/Configurations/descrip.mms.tmpl b/Configurations/descrip.mms.tmpl
index f277bcec63..1d72589eb2 100644
--- a/Configurations/descrip.mms.tmpl
+++ b/Configurations/descrip.mms.tmpl
@@ -489,7 +489,7 @@ EOF
my $write_opt =
join("\n\t", map { my $x = $_ =~ /\[/ ? $_ : "[]".$_;
$x =~ s|(\.EXE)|$1/SHARE|;
- $x =~ s|(\.LIB)|$1/LIB|;
+ $x =~ s|(\.OLB)|$1/LIB|;
"WRITE OPT_FILE \"$x\"" } @deps)
|| "\@ !";
return <<"EOF";
@@ -537,7 +537,7 @@ EOF
"\"\n\t".
join("\n\t", map { my $x = $_ =~ /\[/ ? $_ : "[]".$_;
$x =~ s|(\.EXE)|$1/SHARE|;
- $x =~ s|(\.LIB)|$1/LIB|;
+ $x =~ s|(\.OLB)|$1/LIB|;
"WRITE OPT_FILE \"$x\"" } @deps)
|| "\@ !";
return <<"EOF";