From d36629044db1f6f074a26dc502c9cff7a09fd374 Mon Sep 17 00:00:00 2001 From: Brent Cook Date: Mon, 13 Feb 2023 21:10:32 -0600 Subject: directly grab bn asm source --- update.sh | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/update.sh b/update.sh index 2a0abd3..3d0a608 100755 --- a/update.sh +++ b/update.sh @@ -151,6 +151,13 @@ for i in `awk '/SOURCES|HEADERS/ { print $3 }' crypto/Makefile.am` ; do fi fi done + +for i in $libcrypto_src/bn/arch/*; do + arch=`basename $i` + mkdir -p crypto/bn/arch/$arch + $CP $libcrypto_src/bn/arch/$arch/* crypto/bn/arch/$arch/ +done + $CP crypto/compat/b_win.c crypto/bio $CP crypto/compat/ui_openssl_win.c crypto/ui # add the libcrypto symbol export list -- cgit v1.2.3-55-g6feb