summaryrefslogtreecommitdiffstats
path: root/Configurations/windows-makefile.tmpl
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2020-04-24 10:08:42 +0200
committerRichard Levitte <levitte@openssl.org>2020-04-25 22:54:47 +0200
commit70411a50d4b207e6d0352c12588e93c0c206ca39 (patch)
tree7f6811ac580fb203c21698574419a216fb63d3cb /Configurations/windows-makefile.tmpl
parent47f387e98ebc9867ee7902a43d7bb35462175ce6 (diff)
Configurations/windows-makefile.tmpl: Fix template code for INSTALL_MODULES
Fixes #11623 Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/11629)
Diffstat (limited to 'Configurations/windows-makefile.tmpl')
-rw-r--r--Configurations/windows-makefile.tmpl10
1 files changed, 4 insertions, 6 deletions
diff --git a/Configurations/windows-makefile.tmpl b/Configurations/windows-makefile.tmpl
index c9f6ccfc4d..7246ed168c 100644
--- a/Configurations/windows-makefile.tmpl
+++ b/Configurations/windows-makefile.tmpl
@@ -95,12 +95,10 @@ INSTALL_ENGINEPDBS={-
@{$unified_info{modules}})
-}
INSTALL_MODULES={-
- join(" \\\n" . ' ' x 16,
- fill_lines(" ", $COLUMNS - 16,
- map { platform->dso($_) }
- grep { !$unified_info{attributes}->{modules}->{$_}->{noinst}
- && !$unified_info{attributes}->{modules}->{$_}->{engine} }
- @{$unified_info{modules}}))
+ join(" ", map { platform->dso($_) }
+ grep { !$unified_info{attributes}->{modules}->{$_}->{noinst}
+ && !$unified_info{attributes}->{modules}->{$_}->{engine} }
+ @{$unified_info{modules}})
-}
INSTALL_MODULEPDBS={-
join(" ", map { quotify1(platform->dsopdb($_)) }