From 9c2c499bf3141fbcb61f4ca3fdbc77d451768bc8 Mon Sep 17 00:00:00 2001 From: Brent Cook Date: Sun, 20 Jul 2014 13:40:14 -0500 Subject: Use correct static link order for unit tests. thanks to Jonas 'Sortie' Termansen ok beck@ --- update.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/update.sh b/update.sh index b226603..df47df0 100755 --- a/update.sh +++ b/update.sh @@ -307,8 +307,8 @@ test_excludes=(biotest aeadtest evptest pq_test ssltest arc4randomforktest fork_ fi echo "check_PROGRAMS += $TEST" >> Makefile.am echo "${TEST}_SOURCES = $i" >> Makefile.am - echo "${TEST}_LDADD = \$(top_builddir)/ssl/libssl.la" >> Makefile.am - echo "${TEST}_LDADD += \$(top_builddir)/crypto/libcrypto.la" >> Makefile.am + echo "${TEST}_LDADD = \$(top_builddir)/crypto/libcrypto.la" >> Makefile.am + echo "${TEST}_LDADD += \$(top_builddir)/ssl/libssl.la" >> Makefile.am done ) cp $libcrypto_regress/evp/evptests.txt tests -- cgit v1.2.3-55-g6feb