From f285646c46f707a602b41ce5c497bb464f18bbc1 Mon Sep 17 00:00:00 2001 From: Eric Niebler Date: Wed, 29 Jun 2016 15:40:56 -0700 Subject: [PATCH] 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 --- folly/test/Makefile.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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) -- 2.34.1