From: Danny Al-Gaaf Date: Wed, 3 Apr 2013 18:04:02 +0000 (+0200) Subject: Makefile.am: fix build of ceph_test_cors X-Git-Tag: v0.62~97^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F195%2Fhead;p=ceph.git Makefile.am: fix build of ceph_test_cors Fix build of ceph_test_cors: use $(CRYPTO_LIBS) instead of -lcryptopp. Signed-off-by: Danny Al-Gaaf --- diff --git a/src/Makefile.am b/src/Makefile.am index 290687b431c9..09f1e934b23a 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -883,7 +883,7 @@ check_PROGRAMS += unittest_texttable if WITH_RADOSGW ceph_test_cors_SOURCES = test/test_cors.cc ceph_test_cors_LDFLAGS = libglobal.la -ceph_test_cors_LDADD = librados.la librgw.a ${UNITTEST_LDADD} ${UNITTEST_STATIC_LDADD} -lcryptopp -lcurl -luuid -lexpat +ceph_test_cors_LDADD = librados.la librgw.a ${UNITTEST_LDADD} ${UNITTEST_STATIC_LDADD} $(CRYPTO_LIBS) -lcurl -luuid -lexpat ceph_test_cors_CXXFLAGS = ${AM_CXXFLAGS} ${UNITTEST_CXXFLAGS} bin_DEBUGPROGRAMS += ceph_test_cors endif