From: Richard Levitte Date: Thu, 21 Oct 2021 07:35:07 +0000 (+0200) Subject: Configurations/windows-makefile.tmpl: obj2bin(): use the resource file too X-Git-Tag: openssl-3.2.0-alpha1~3405 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=01451721afebabd0b7bdcd4cb3a183c9b590d266;p=thirdparty%2Fopenssl.git Configurations/windows-makefile.tmpl: obj2bin(): use the resource file too When remaking how programs were linked, the variable `$ress` was forgotten. Unfortunately, perl treats this with silence. Fixes #16870 Fixes #16667 Reviewed-by: Tomas Mraz Reviewed-by: Tim Hudson (Merged from https://github.com/openssl/openssl/pull/16875) --- diff --git a/Configurations/windows-makefile.tmpl b/Configurations/windows-makefile.tmpl index 78d39ffb4b2..81a94ee19ff 100644 --- a/Configurations/windows-makefile.tmpl +++ b/Configurations/windows-makefile.tmpl @@ -983,6 +983,7 @@ EOF @{$args{objs}}; my @deps = compute_lib_depends(@{$args{deps}}); my $objs = join($target{ld_resp_delim}, @objs); + my $ress = join($target{ld_resp_delim}, @ress); my $linklibs = join("", map { "$_$target{ld_resp_delim}" } @deps); my $deps = join(" ", @objs, @ress, @deps); return <<"EOF";