diff options
author | Brent Cook <bcook@openbsd.org> | 2014-07-20 13:40:14 -0500 |
---|---|---|
committer | Brent Cook <bcook@openbsd.org> | 2014-07-20 16:30:44 -0500 |
commit | 9c2c499bf3141fbcb61f4ca3fdbc77d451768bc8 (patch) | |
tree | 7c35908a8ee61994b1ff0caf73dcf9e987a3e389 | |
parent | 237250e07ac8c1e1417b8b71ed0640ba8d931d7c (diff) | |
download | portable-9c2c499bf3141fbcb61f4ca3fdbc77d451768bc8.tar.gz portable-9c2c499bf3141fbcb61f4ca3fdbc77d451768bc8.tar.bz2 portable-9c2c499bf3141fbcb61f4ca3fdbc77d451768bc8.zip |
Use correct static link order for unit tests.
thanks to Jonas 'Sortie' Termansen
ok beck@
-rwxr-xr-x | update.sh | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -307,8 +307,8 @@ test_excludes=(biotest aeadtest evptest pq_test ssltest arc4randomforktest fork_ | |||
307 | fi | 307 | fi |
308 | echo "check_PROGRAMS += $TEST" >> Makefile.am | 308 | echo "check_PROGRAMS += $TEST" >> Makefile.am |
309 | echo "${TEST}_SOURCES = $i" >> Makefile.am | 309 | echo "${TEST}_SOURCES = $i" >> Makefile.am |
310 | echo "${TEST}_LDADD = \$(top_builddir)/ssl/libssl.la" >> Makefile.am | 310 | echo "${TEST}_LDADD = \$(top_builddir)/crypto/libcrypto.la" >> Makefile.am |
311 | echo "${TEST}_LDADD += \$(top_builddir)/crypto/libcrypto.la" >> Makefile.am | 311 | echo "${TEST}_LDADD += \$(top_builddir)/ssl/libssl.la" >> Makefile.am |
312 | done | 312 | done |
313 | ) | 313 | ) |
314 | cp $libcrypto_regress/evp/evptests.txt tests | 314 | cp $libcrypto_regress/evp/evptests.txt tests |