From c97a82d4a4a0288ed2a456f4ce41d57483724f17 Mon Sep 17 00:00:00 2001 From: Andrew Turner Date: Fri, 22 Sep 2023 12:34:08 +0100 Subject: [PATCH] libcrypto: Copy the arm64 header when building asm It may be needed when it's updated so is best to keep in sync with the assembly files. Reviewed by: emaste Sponsored by: Arm Ltd Differential Revision: https://reviews.freebsd.org/D41938 --- secure/lib/libcrypto/Makefile.asm | 1 + 1 file changed, 1 insertion(+) diff --git a/secure/lib/libcrypto/Makefile.asm b/secure/lib/libcrypto/Makefile.asm index d3243e5b20b..644965c1ac1 100644 --- a/secure/lib/libcrypto/Makefile.asm +++ b/secure/lib/libcrypto/Makefile.asm @@ -46,6 +46,7 @@ ASM= ${SRCS:R:S/$/.S/} sha256-armv8.S all: ${ASM} rm -f ${ASM:R:S/$/.s/} + ${CP} ${LCRYPTO_SRC}/crypto/arm_arch.h arm_arch.h CLEANFILES= ${ASM} .SUFFIXES: .pl -- 2.45.0