summaryrefslogtreecommitdiff
path: root/config.com
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2018-01-28 10:22:03 +0100
committerRichard Levitte <levitte@openssl.org>2018-01-28 14:49:44 +0100
commitd4deecc203bf3a7bcc5f31529692f5b668c0c2bc (patch)
tree14c2f7ac02bc31d839a0beab0085545485da3a88 /config.com
parentf0bbf36599e0dd41e20ee653a7323babc5a4deab (diff)
downloadopenssl-new-d4deecc203bf3a7bcc5f31529692f5b668c0c2bc.tar.gz
VMS config.com: better handling of arguments
Most of all, this change preserves casing a bit better Reviewed-by: Rich Salz <rsalz@openssl.org> (Merged from https://github.com/openssl/openssl/pull/5180)
Diffstat (limited to 'config.com')
-rw-r--r--config.com6
1 files changed, 3 insertions, 3 deletions
diff --git a/config.com b/config.com
index 5b549955d0..80b764e0ad 100644
--- a/config.com
+++ b/config.com
@@ -73,7 +73,7 @@ $ collected_args = collected_args + " --debug"
$ P = ""
$ ENDIF
$ IF P .NES. "" THEN -
- collected_args = collected_args + " " + P1
+ collected_args = collected_args + " """ + P1 + """"
$ P1 = P2
$ P2 = P3
$ P3 = P4
@@ -87,7 +87,7 @@ $ ENDLOOP1:
$
$ target = "vms-''arch'''pointer_size'"
$ IF verbose THEN -
- WRITE SYS$OUTPUT "PERL ''here'Configure ""''target'""''collected_args'"
+ WRITE SYS$OUTPUT "PERL ''here'Configure ""''target'""",collected_args
$ IF .not. dryrun THEN -
- PERL 'here'Configure "''target'" 'debug' 'collected_args'
+ PERL 'here'Configure "''target'"'collected_args'
$ EXIT $STATUS