[openssl-commits] [openssl] OpenSSL_1_1_0-stable update

Richard Levitte levitte at openssl.org
Fri Nov 4 19:19:09 UTC 2016


The branch OpenSSL_1_1_0-stable has been updated
       via  5ee32f27a618a013b3426ef0ae4e3daedb61b862 (commit)
      from  dc691e859b22e0c89c09b2ac2894d44ee83f4191 (commit)


- Log -----------------------------------------------------------------
commit 5ee32f27a618a013b3426ef0ae4e3daedb61b862
Author: Richard Levitte <levitte at openssl.org>
Date:   Fri Nov 4 19:11:11 2016 +0100

    VMS build file template: assign 'arch' to local symbol table
    
    Since the local symbol table is looked up before the global symbol
    table, 'arch' assigned in the local symbol table of the DCL where MMS
    is called would be seen before the 'arch' defined in descrip.mms.
    Assigning it to the local symbol table in descrip.mms removes that
    issue.
    
    Reviewed-by: Rich Salz <rsalz at openssl.org>
    (Merged from https://github.com/openssl/openssl/pull/1853)
    (cherry picked from commit 3ee24d4acaff1c247db89c5cfcac17749dc3d7bc)

-----------------------------------------------------------------------

Summary of changes:
 Configurations/descrip.mms.tmpl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Configurations/descrip.mms.tmpl b/Configurations/descrip.mms.tmpl
index aef5fcf..da57049 100644
--- a/Configurations/descrip.mms.tmpl
+++ b/Configurations/descrip.mms.tmpl
@@ -223,7 +223,7 @@ NODEBUG=@
         $(NODEBUG) !
         $(NODEBUG) ! Figure out the architecture
         $(NODEBUG) !
-        $(NODEBUG) arch == f$edit( f$getsyi( "arch_name"), "upcase")
+        $(NODEBUG) arch = f$edit( f$getsyi( "arch_name"), "upcase")
         $(NODEBUG) !
         $(NODEBUG) ! Set up logical names for the libraries, so LINK and
         $(NODEBUG) ! running programs can use them.


More information about the openssl-commits mailing list