Commit 9c5f2ea6 authored by Richard Levitte's avatar Richard Levitte
Browse files

VMS build: don't add a comma before 'extradefines'



The variable extradefines will have the starting comma, if needed.

Reviewed-by: default avatarTim Hudson <tjh@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/7591)
parent 8cfc1971
Loading
Loading
Loading
Loading
+3 −3
Original line number Original line Diff line number Diff line
@@ -198,8 +198,8 @@ ASOUTFLAG={- $target{asoutflag} -}$(OSSL_EMPTY)


CNF_ASFLAGS={- join('', $target{asflags} || (),
CNF_ASFLAGS={- join('', $target{asflags} || (),
                        @{$config{asflags}}) -}
                        @{$config{asflags}}) -}
CNF_DEFINES={- our $defines2 = join('', map { ",$_" } @{$target{defines}},
CNF_DEFINES={- our $defines2 = join('', (map { ",$_" } @{$target{defines}},
                                                      @{$config{defines}},
                                                       @{$config{defines}}),
                                        "'extradefines'") -}
                                        "'extradefines'") -}
CNF_INCLUDES={- our $includes2 = join(',', @{$target{includes}},
CNF_INCLUDES={- our $includes2 = join(',', @{$target{includes}},
                                           @{$config{includes}}) -}
                                           @{$config{includes}}) -}