diff options
author | Brent Cook <bcook@openbsd.org> | 2018-05-02 23:33:37 -0500 |
---|---|---|
committer | Brent Cook <bcook@openbsd.org> | 2018-05-02 23:33:37 -0500 |
commit | 138734e5b9a6f93098291c09cf54d95ec3d301e7 (patch) | |
tree | fe49707c57fddbcc7cb81b63796511719f16b06f /update.sh | |
parent | 4c61b0e7fe143d3e0a3b6bb15d7f2c39cdfee8f8 (diff) | |
download | portable-138734e5b9a6f93098291c09cf54d95ec3d301e7.tar.gz portable-138734e5b9a6f93098291c09cf54d95ec3d301e7.tar.bz2 portable-138734e5b9a6f93098291c09cf54d95ec3d301e7.zip |
expand symbol filter to include underscore
Diffstat (limited to 'update.sh')
-rwxr-xr-x | update.sh | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -156,7 +156,7 @@ done | |||
156 | $CP crypto/compat/b_win.c crypto/bio | 156 | $CP crypto/compat/b_win.c crypto/bio |
157 | $CP crypto/compat/ui_openssl_win.c crypto/ui | 157 | $CP crypto/compat/ui_openssl_win.c crypto/ui |
158 | # add the libcrypto symbol export list | 158 | # add the libcrypto symbol export list |
159 | $GREP -v OPENSSL_ia32cap_P $libcrypto_src/Symbols.list | $GREP '^[[:alpha:]]' > crypto/crypto.sym | 159 | $GREP -v OPENSSL_ia32cap_P $libcrypto_src/Symbols.list | $GREP '^[A-Za-z0-9_]' > crypto/crypto.sym |
160 | 160 | ||
161 | # generate assembly crypto algorithms | 161 | # generate assembly crypto algorithms |
162 | asm_src=$libcrypto_src | 162 | asm_src=$libcrypto_src |
@@ -211,7 +211,7 @@ for i in `awk '/SOURCES|HEADERS/ { print $3 }' tls/Makefile.am` ; do | |||
211 | fi | 211 | fi |
212 | done | 212 | done |
213 | # add the libtls symbol export list | 213 | # add the libtls symbol export list |
214 | $GREP '^[[:alpha:]]' < $libtls_src/Symbols.list > tls/tls.sym | 214 | $GREP '^[A-Za-z0-9_]' < $libtls_src/Symbols.list > tls/tls.sym |
215 | 215 | ||
216 | mkdir -p libtls-standalone/m4 | 216 | mkdir -p libtls-standalone/m4 |
217 | $CP m4/check*.m4 \ | 217 | $CP m4/check*.m4 \ |
@@ -263,7 +263,7 @@ for i in `awk '/SOURCES|HEADERS/ { print $3 }' ssl/Makefile.am` ; do | |||
263 | $CP $libssl_src/$i ssl | 263 | $CP $libssl_src/$i ssl |
264 | done | 264 | done |
265 | # add the libssl symbol export list | 265 | # add the libssl symbol export list |
266 | $GREP '^[[:alpha:]]' < $libssl_src/Symbols.list > ssl/ssl.sym | 266 | $GREP '^[A-Za-z0-9_]' < $libssl_src/Symbols.list > ssl/ssl.sym |
267 | 267 | ||
268 | # copy libcrypto tests | 268 | # copy libcrypto tests |
269 | echo "copying tests" | 269 | echo "copying tests" |