From 70411a50d4b207e6d0352c12588e93c0c206ca39 Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Fri, 24 Apr 2020 10:08:42 +0200 Subject: [PATCH] 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) --- Configurations/windows-makefile.tmpl | 10 ++++------ 1 file 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($_)) } -- 2.25.1