diff options
author | Tomas Mraz <tomas@openssl.org> | 2023-09-26 14:56:02 +0200 |
---|---|---|
committer | Tomas Mraz <tomas@openssl.org> | 2023-10-02 12:37:17 +0200 |
commit | b07a0b1ac272c4a75c5115e10f274e2d7a477658 (patch) | |
tree | 232d71775a974d4162d226bbb4fa1a9129bc723c /Configurations | |
parent | Coverity 1545175: use after free (diff) | |
download | openssl-b07a0b1ac272c4a75c5115e10f274e2d7a477658.tar.xz openssl-b07a0b1ac272c4a75c5115e10f274e2d7a477658.zip |
Avoid having ecp_sm2p256-armv8.pl in fips.module.sources
Reviewed-by: Paul Dale <pauli@openssl.org>
Reviewed-by: Tom Cosgrove <tom.cosgrove@arm.com>
(Merged from https://github.com/openssl/openssl/pull/22194)
Diffstat (limited to 'Configurations')
-rw-r--r-- | Configurations/unix-Makefile.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Configurations/unix-Makefile.tmpl b/Configurations/unix-Makefile.tmpl index 881310cf08..6bdbf31d08 100644 --- a/Configurations/unix-Makefile.tmpl +++ b/Configurations/unix-Makefile.tmpl @@ -1264,7 +1264,7 @@ providers/fips.module.sources.new: configdata.pm crypto/*cap.c; do \ echo "$$x"; \ done \ - ) | sort | uniq > providers/fips.module.sources.new + ) | grep -v sm2p256 | sort | uniq > providers/fips.module.sources.new rm -rf sources-tmp # Set to -force to force a rebuild |