[openssl-commits] [openssl] master update

Richard Levitte levitte at openssl.org
Sun Feb 28 12:27:46 UTC 2016


The branch master has been updated
       via  687237e93dd21e4656f1e166c098da1c67d99485 (commit)
      from  340da949ccde13f6506177e327ccc21f49f56d3b (commit)


- Log -----------------------------------------------------------------
commit 687237e93dd21e4656f1e166c098da1c67d99485
Author: Richard Levitte <levitte at openssl.org>
Date:   Sun Feb 28 09:31:46 2016 +0100

    VMS - don't exit out of a MMS recipe
    
    Exiting out of a recipe more than necessary leaves an ugly message.
    
    Reviewed-by: Rich Salz <rsalz at openssl.org>

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

Summary of changes:
 Configurations/descrip.mms.tmpl | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/Configurations/descrip.mms.tmpl b/Configurations/descrip.mms.tmpl
index b7e047b..38fa438 100644
--- a/Configurations/descrip.mms.tmpl
+++ b/Configurations/descrip.mms.tmpl
@@ -244,10 +244,10 @@ install : install_sw install_docs
         @ WRITE SYS$OUTPUT ""
         @ WRITE SYS$OUTPUT "Installation complete"
         @ WRITE SYS$OUTPUT ""
-        @ IF "$(DESTDIR)" .NES. "" THEN EXIT 1
-        @ WRITE SYS$OUTPUT "Run @$(INSTALLTOP)openssl_startup to set up logical names"
-        @ WRITE SYS$OUTPUT "then run @$(INSTALLTOP)openssl_setup to define commands"
-        @ WRITE SYS$OUTPUT ""
+        @ IF "$(DESTDIR)" .EQS. "" THEN -
+             PIPE ( WRITE SYS$OUTPUT "Run @$(INSTALLTOP)openssl_startup to set up logical names" ; -
+                    WRITE SYS$OUTPUT "then run @$(INSTALLTOP)openssl_setup to define commands" ; -
+                    WRITE SYS$OUTPUT "" )
 
 uninstall : uninstall_docs uninstall_sw
 


More information about the openssl-commits mailing list