summaryrefslogtreecommitdiffstats
path: root/Configurations/windows-makefile.tmpl
diff options
context:
space:
mode:
authorTomas Mraz <tomas@openssl.org>2021-05-31 14:18:56 +0200
committerTomas Mraz <tomas@openssl.org>2021-06-01 15:07:37 +0200
commite47ed5fe1faff9b5f9c3112bfcbf7c5165eabf33 (patch)
tree64117e238df6696474e46f7e8b68db6851191303 /Configurations/windows-makefile.tmpl
parent31b7f23d2f958491d46c8a8e61c2b77b1b546f3e (diff)
Fix enable-fips builds on Windows
Reviewed-by: Paul Dale <pauli@openssl.org> Reviewed-by: Richard Levitte <levitte@openssl.org> (Merged from https://github.com/openssl/openssl/pull/15550)
Diffstat (limited to 'Configurations/windows-makefile.tmpl')
-rw-r--r--Configurations/windows-makefile.tmpl2
1 files changed, 1 insertions, 1 deletions
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) -}