[openssl-commits] [openssl] master update
Richard Levitte
levitte at openssl.org
Sat Feb 20 08:27:53 UTC 2016
The branch master has been updated
via ef3c88cf893983e3028dae91b9f68a751600ebad (commit)
from 874efa9f81c1414725088324b2b602d17dc291db (commit)
- Log -----------------------------------------------------------------
commit ef3c88cf893983e3028dae91b9f68a751600ebad
Author: Richard Levitte <levitte at openssl.org>
Date: Fri Feb 19 23:49:05 2016 +0100
VMS static libraries have the extension .OLB, not .LIB
Object LiBrary
Reviewed-by: Rich Salz <rsalz at openssl.org>
-----------------------------------------------------------------------
Summary of changes:
Configurations/descrip.mms.tmpl | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/Configurations/descrip.mms.tmpl b/Configurations/descrip.mms.tmpl
index f277bce..1d72589 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";
More information about the openssl-commits
mailing list