diff options
author | Richard Levitte <levitte@openssl.org> | 2021-10-15 12:37:56 +0200 |
---|---|---|
committer | Matt Caswell <matt@openssl.org> | 2021-12-14 12:50:16 +0100 |
commit | 0df8e71a6e32d0a993530b7f813603da3e7a6c4c (patch) | |
tree | 3bb95fe827a283fa3c830f39fc3076a8c95ca03e /VMS | |
parent | Fix VMS installation - use platform->shlib_version_as_filename() consistently (diff) | |
download | openssl-0df8e71a6e32d0a993530b7f813603da3e7a6c4c.tar.xz openssl-0df8e71a6e32d0a993530b7f813603da3e7a6c4c.zip |
Fix VMS installation - deassign the same logical names that were defined
The logical name for the engines directory is named one way in
VMS/openssl_startup.com.in, but a different name was deassigned in
VMS/openssl_shutdown.com.in.
Reviewed-by: Tomas Mraz <tomas@openssl.org>
Reviewed-by: Matt Caswell <matt@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/16842)
(cherry picked from commit 73e47e39a52d8e1c7515e140b8613304b8abe7ac)
Diffstat (limited to 'VMS')
-rw-r--r-- | VMS/openssl_shutdown.com.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/VMS/openssl_shutdown.com.in b/VMS/openssl_shutdown.com.in index 7a5c8ec4d5..4193c900f9 100644 --- a/VMS/openssl_shutdown.com.in +++ b/VMS/openssl_shutdown.com.in @@ -34,7 +34,7 @@ $ DEAS OSSL$INSTROOT $ DEAS OSSL$INCLUDE $ DEAS OSSL$LIB $ DEAS OSSL$SHARE -$ DEAS OSSL$ENGINES'sv' +$ DEAS OSSL$ENGINES'sv''pz' $ DEAS OSSL$MODULES'pz' $ DEAS OSSL$EXE $ DEAS OSSL$LIBCRYPTO'pz' @@ -47,7 +47,7 @@ $ DEAS OPENSSL $ $ IF P2 .NES. "NOALIASES" $ THEN -$ DEAS OSSL$ENGINES +$ DEAS OSSL$ENGINES'pz' ${- output_off() if $config{no_shared}; "" -} $ DEAS OSSL$LIBCRYPTO_SHR'pz' $ DEAS OSSL$LIBSSL_SHR'pz' |