From: Eric Niebler Date: Wed, 29 Jun 2016 22:40:56 +0000 (-0700) Subject: fix the open source ssl_test target X-Git-Tag: 2016.07.26~110 X-Git-Url: http://plrg.eecs.uci.edu/git/?a=commitdiff_plain;h=f285646c46f707a602b41ce5c497bb464f18bbc1;p=folly.git fix the open source ssl_test target Summary: 'make check' is failing since the path to OpenSSLHashTest.cpp is wrong and because ssl_test is not linked to libcrypto. Reviewed By: mhx Differential Revision: D3498207 fbshipit-source-id: 0f443d1f1b76c537d211dc148df0cd3fdfb8eead --- diff --git a/folly/test/Makefile.am b/folly/test/Makefile.am index 7a39a820..787821bd 100644 --- a/folly/test/Makefile.am +++ b/folly/test/Makefile.am @@ -267,8 +267,8 @@ function_test_LDADD = libfollytestmain.la TESTS += function_test ssl_test_SOURCES = \ - ../ssl/OpenSSLHashTest.cpp -ssl_test_LDADD = libfollytestmain.la + ../ssl/test/OpenSSLHashTest.cpp +ssl_test_LDADD = libfollytestmain.la -lcrypto TESTS += ssl_test check_PROGRAMS += $(TESTS)