diff options
author | Brent Cook <busterb@gmail.com> | 2023-02-13 21:10:32 -0600 |
---|---|---|
committer | Brent Cook <busterb@gmail.com> | 2023-02-13 21:10:32 -0600 |
commit | d36629044db1f6f074a26dc502c9cff7a09fd374 (patch) | |
tree | 02b7a2fcab0ea440948b522800108acbcda0d460 /update.sh | |
parent | e5e36ec6ec6f665c8bbb0e42c55033df98277fe2 (diff) | |
download | portable-d36629044db1f6f074a26dc502c9cff7a09fd374.tar.gz portable-d36629044db1f6f074a26dc502c9cff7a09fd374.tar.bz2 portable-d36629044db1f6f074a26dc502c9cff7a09fd374.zip |
directly grab bn asm source
Diffstat (limited to 'update.sh')
-rwxr-xr-x | update.sh | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -151,6 +151,13 @@ for i in `awk '/SOURCES|HEADERS/ { print $3 }' crypto/Makefile.am` ; do | |||
151 | fi | 151 | fi |
152 | fi | 152 | fi |
153 | done | 153 | done |
154 | |||
155 | for i in $libcrypto_src/bn/arch/*; do | ||
156 | arch=`basename $i` | ||
157 | mkdir -p crypto/bn/arch/$arch | ||
158 | $CP $libcrypto_src/bn/arch/$arch/* crypto/bn/arch/$arch/ | ||
159 | done | ||
160 | |||
154 | $CP crypto/compat/b_win.c crypto/bio | 161 | $CP crypto/compat/b_win.c crypto/bio |
155 | $CP crypto/compat/ui_openssl_win.c crypto/ui | 162 | $CP crypto/compat/ui_openssl_win.c crypto/ui |
156 | # add the libcrypto symbol export list | 163 | # add the libcrypto symbol export list |