From e47ed5fe1faff9b5f9c3112bfcbf7c5165eabf33 Mon Sep 17 00:00:00 2001 From: Tomas Mraz Date: Mon, 31 May 2021 14:18:56 +0200 Subject: Fix enable-fips builds on Windows Reviewed-by: Paul Dale Reviewed-by: Richard Levitte (Merged from https://github.com/openssl/openssl/pull/15550) --- Configurations/windows-makefile.tmpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Configurations/windows-makefile.tmpl') diff --git a/Configurations/windows-makefile.tmpl b/Configurations/windows-makefile.tmpl index af8a81c8b2..d6ba2d13fd 100644 --- a/Configurations/windows-makefile.tmpl +++ b/Configurations/windows-makefile.tmpl @@ -65,7 +65,7 @@ FIPSMODULE={- # We do some extra checking here, as there should be only one && $unified_info{attributes}->{modules}->{$_}->{fips} } @{$unified_info{modules}}; die "More that one FIPS module" if scalar @fipsmodules > 1; - join(" ", map { basename(platform->dso($_)) } @fipsmodules) -} + join(" ", map { platform->dso($_) } @fipsmodules) -} FIPSMODULENAME={- die "More that one FIPS module" if scalar @fipsmodules > 1; join(", ", map { basename(platform->dso($_)) } @fipsmodules) -} PROGRAMS={- our @PROGRAMS = map { platform->bin($_) } @{$unified_info{programs}}; join(" ", @PROGRAMS) -} -- cgit v1.2.1