From: Richard Levitte Date: Fri, 24 Apr 2020 08:08:42 +0000 (+0200) Subject: Configurations/windows-makefile.tmpl: Fix template code for INSTALL_MODULES X-Git-Tag: openssl-3.0.0-alpha2~156 X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff_plain;h=70411a50d4b207e6d0352c12588e93c0c206ca39 Configurations/windows-makefile.tmpl: Fix template code for INSTALL_MODULES Fixes #11623 Reviewed-by: Matt Caswell (Merged from https://github.com/openssl/openssl/pull/11629) --- 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($_)) }