aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrent Cook <bcook@openbsd.org>2017-04-30 23:07:47 -0500
committerBrent Cook <bcook@openbsd.org>2017-04-30 23:07:47 -0500
commit9834f621fab167857ddda743fbd32b644383d510 (patch)
tree1d6a0f996bdcaaf73d032a7164f7c4cb52ef4b30
parentb09eba6ae24b40ed6b2dd1a2847336e02952d985 (diff)
downloadportable-2.5.4.tar.gz
portable-2.5.4.tar.bz2
portable-2.5.4.zip
remove OPENSSL_ia32cap_P from crypto.sym when generatedv2.5.4
-rwxr-xr-xupdate.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/update.sh b/update.sh
index 6fb1da7..aa467f3 100755
--- a/update.sh
+++ b/update.sh
@@ -151,7 +151,7 @@ done
151$CP crypto/compat/b_win.c crypto/bio 151$CP crypto/compat/b_win.c crypto/bio
152$CP crypto/compat/ui_openssl_win.c crypto/ui 152$CP crypto/compat/ui_openssl_win.c crypto/ui
153# add the libcrypto symbol export list 153# add the libcrypto symbol export list
154grep '^[[:alpha:]]' < $libcrypto_src/Symbols.list > crypto/crypto.sym 154grep -v OPENSSL_ia32cap_P $libcrypto_src/Symbols.list | grep '^[[:alpha:]]' > crypto/crypto.sym
155 155
156# generate assembly crypto algorithms 156# generate assembly crypto algorithms
157asm_src=$libcrypto_src 157asm_src=$libcrypto_src