VMS build: don't add a comma before 'extradefines'
The variable extradefines will have the starting comma, if needed. Reviewed-by: Tim Hudson <tjh@openssl.org> (Merged from https://github.com/openssl/openssl/pull/7591)
This commit is contained in:
parent
8cfc19716c
commit
9c5f2ea677
1 changed files with 3 additions and 3 deletions
|
@ -198,9 +198,9 @@ ASOUTFLAG={- $target{asoutflag} -}$(OSSL_EMPTY)
|
|||
|
||||
CNF_ASFLAGS={- join('', $target{asflags} || (),
|
||||
@{$config{asflags}}) -}
|
||||
CNF_DEFINES={- our $defines2 = join('', map { ",$_" } @{$target{defines}},
|
||||
@{$config{defines}},
|
||||
"'extradefines'") -}
|
||||
CNF_DEFINES={- our $defines2 = join('', (map { ",$_" } @{$target{defines}},
|
||||
@{$config{defines}}),
|
||||
"'extradefines'") -}
|
||||
CNF_INCLUDES={- our $includes2 = join(',', @{$target{includes}},
|
||||
@{$config{includes}}) -}
|
||||
CNF_CPPFLAGS={- our $cppflags2 = join('', $target{cppflags} || (),
|
||||
|
|
Loading…
Reference in a new issue