]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
Fix enable-fips builds on Windows
authorTomas Mraz <tomas@openssl.org>
Mon, 31 May 2021 12:18:56 +0000 (14:18 +0200)
committerTomas Mraz <tomas@openssl.org>
Tue, 1 Jun 2021 13:07:37 +0000 (15:07 +0200)
Reviewed-by: Paul Dale <pauli@openssl.org>
Reviewed-by: Richard Levitte <levitte@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/15550)

Configurations/windows-makefile.tmpl

index af8a81c8b2b93ee1a9fb19873b4ccbc3bafc5c34..d6ba2d13fd13c2e5d3a431c3e0dd7860331ed187 100644 (file)
@@ -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) -}