From 0df8e71a6e32d0a993530b7f813603da3e7a6c4c Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Fri, 15 Oct 2021 12:37:56 +0200 Subject: [PATCH] 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 Reviewed-by: Matt Caswell (Merged from https://github.com/openssl/openssl/pull/16842) (cherry picked from commit 73e47e39a52d8e1c7515e140b8613304b8abe7ac) --- VMS/openssl_shutdown.com.in | 4 ++-- 1 file 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' -- 2.34.1