diff options
author | Richard Levitte <levitte@openssl.org> | 2018-11-08 10:28:33 +0100 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2018-11-08 22:43:10 +0100 |
commit | 9c5f2ea677ac1ebe87690d8febd2c7e4629c4841 (patch) | |
tree | 155cd9e53c1d1deddf966b5ae95270e0ec5bb252 /Configurations/descrip.mms.tmpl | |
parent | rand_unix.c: open random devices on first use only (diff) | |
download | openssl-9c5f2ea677ac1ebe87690d8febd2c7e4629c4841.tar.xz openssl-9c5f2ea677ac1ebe87690d8febd2c7e4629c4841.zip |
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)
Diffstat (limited to '')
-rw-r--r-- | Configurations/descrip.mms.tmpl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Configurations/descrip.mms.tmpl b/Configurations/descrip.mms.tmpl index eb0f9c50ae..04c0089434 100644 --- a/Configurations/descrip.mms.tmpl +++ b/Configurations/descrip.mms.tmpl @@ -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} || (), |