From: Richard Levitte Date: Sun, 28 Feb 2016 08:31:46 +0000 (+0100) Subject: VMS - don't exit out of a MMS recipe X-Git-Tag: OpenSSL_1_1_0-pre4~468 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=687237e93dd21e4656f1e166c098da1c67d99485;p=oweals%2Fopenssl.git 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 --- diff --git a/Configurations/descrip.mms.tmpl b/Configurations/descrip.mms.tmpl index b7e047ba7c..38fa4388b9 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