diff options
author | Tomas Mraz <tomas@openssl.org> | 2023-05-12 12:55:24 +0200 |
---|---|---|
committer | Tomas Mraz <tomas@openssl.org> | 2023-05-22 15:14:31 +0200 |
commit | c509c040223aebd2a681fb64b60177c3c21f76d1 (patch) | |
tree | 20b30aae02a6fb83823898897ffa81e4a5c27c98 | |
parent | crypto/params: drop float for UEFI (diff) | |
download | openssl-c509c040223aebd2a681fb64b60177c3c21f76d1.tar.xz openssl-c509c040223aebd2a681fb64b60177c3c21f76d1.zip |
fips.module.sources: Add missing cpuid and related .c sources for other architectures
Reviewed-by: Paul Dale <pauli@openssl.org>
Reviewed-by: Dmitry Belyavskiy <beldmit@gmail.com>
Reviewed-by: Todd Short <todd.short@me.com>
(Merged from https://github.com/openssl/openssl/pull/20949)
-rw-r--r-- | Configurations/unix-Makefile.tmpl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Configurations/unix-Makefile.tmpl b/Configurations/unix-Makefile.tmpl index b4b6d220d4..f4e204b20e 100644 --- a/Configurations/unix-Makefile.tmpl +++ b/Configurations/unix-Makefile.tmpl @@ -1260,7 +1260,8 @@ providers/fips.module.sources.new: configdata.pm crypto/ec/asm/*.pl \ crypto/modes/asm/*.pl \ crypto/sha/asm/*.pl \ - crypto/x86_64cpuid.pl; do \ + crypto/*cpuid.pl crypto/*cpuid.S \ + crypto/*cap.c; do \ echo "$$x"; \ done \ ) | sort | uniq > providers/fips.module.sources.new |