Skip to content

Commit

Permalink
VMS config.com: better handling of arguments
Browse files Browse the repository at this point in the history
Most of all, this change preserves casing a bit better

Reviewed-by: Rich Salz <[email protected]>
(Merged from openssl#5180)
  • Loading branch information
levitte committed Jan 28, 2018
1 parent f0bbf36 commit d4deecc
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions config.com
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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

0 comments on commit d4deecc

Please sign in to comment.