diff options
author | Richard Levitte <levitte@openssl.org> | 2023-05-20 08:39:20 +0200 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2023-05-24 06:18:59 +0200 |
commit | bc89c9f97735703f49f528d3c943de0b22ec33d7 (patch) | |
tree | 368d0ed737420eda04bafd792a27d8ec54c1f72c | |
parent | Fix incorrect parameter verification in EVP_MD_CTX_get_params (diff) | |
download | openssl-bc89c9f97735703f49f528d3c943de0b22ec33d7.tar.xz openssl-bc89c9f97735703f49f528d3c943de0b22ec33d7.zip |
Drop the last reference of SHLIB_EXT
SHLIB_EXT is a variable that exists on OpenSSL build file templates before
version 3.0, for which much of the logic for figuring out file names and
such was moved to the 'platform' set of routines.
But, it seems that one (now useless) reference remained on the VMS specific
descrip.mms.tmpl. We replace it with an explicit '.EXE', which is the
default extension for shared libraries on VMS.
Reviewed-by: Matt Caswell <matt@openssl.org>
Reviewed-by: Hugo Landau <hlandau@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/21007)
-rw-r--r-- | Configurations/descrip.mms.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Configurations/descrip.mms.tmpl b/Configurations/descrip.mms.tmpl index 0a1ed94a30..ce74b3703f 100644 --- a/Configurations/descrip.mms.tmpl +++ b/Configurations/descrip.mms.tmpl @@ -465,7 +465,7 @@ NODEBUG=@ $(NODEBUG) ! Set up logical names for the libraries, so LINK and $(NODEBUG) ! running programs can use them. $(NODEBUG) ! - $(NODEBUG) {- join("\n\t\$(NODEBUG) ", map { "DEFINE ".uc($_)." 'F\$ENV(\"DEFAULT\")'".uc($_)."\$(SHLIB_EXT)" } @shlibs) || "!" -} + $(NODEBUG) {- join("\n\t\$(NODEBUG) ", map { "DEFINE ".uc($_)." 'F\$ENV(\"DEFAULT\")'".uc($_).".EXE" } @shlibs) || "!" -} .LAST : $(NODEBUG) {- join("\n\t\$(NODEBUG) ", map { "DEASSIGN ".uc($_) } @shlibs) || "!" -} |