mirror of
https://github.com/openssl/openssl.git
synced 2024-11-21 01:15:20 +08:00
test: never run fipsinstall if the tests are not enabled.
Fixes #15056 The dependency for fipsinstall was being added to the makefile regardless of it being used. This means that a subsequent `make test` would fail if the command line application wasn't present. Rather than fix the instance in question, it is better to leave out this part of the makefile if the tests cannot be run. Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/15057)
This commit is contained in:
parent
3babc1e468
commit
2395ad8079
@ -147,11 +147,13 @@ IF[{- !$disabled{fips} -}]
|
||||
# module installation. We have the output go to standard output, because
|
||||
# the generated commands in build templates are expected to catch that,
|
||||
# and thereby keep control over the exact output file location.
|
||||
DEPEND[|tests|]=fipsmodule.cnf
|
||||
GENERATE[fipsmodule.cnf]=../apps/openssl fipsinstall \
|
||||
-module providers/$(FIPSMODULENAME) -provider_name fips \
|
||||
-mac_name HMAC -section_name fips_sect
|
||||
DEPEND[fipsmodule.cnf]=$FIPSGOAL
|
||||
IF[{- !$disabled{tests} -}]
|
||||
DEPEND[|tests|]=fipsmodule.cnf
|
||||
GENERATE[fipsmodule.cnf]=../apps/openssl fipsinstall \
|
||||
-module providers/$(FIPSMODULENAME) -provider_name fips \
|
||||
-mac_name HMAC -section_name fips_sect
|
||||
DEPEND[fipsmodule.cnf]=$FIPSGOAL
|
||||
ENDIF
|
||||
ENDIF
|
||||
|
||||
#
|
||||
|
Loading…
Reference in New Issue
Block a user