From b47264e74b62e2b6c0386c8eacc1391608fc52bf Mon Sep 17 00:00:00 2001 From: David Chappelle Date: Sat, 30 Aug 2014 08:46:09 -0700 Subject: [PATCH] Fixed incorrect library argument to the linker. Building the tests failed to compile on ubuntu 14.04 because -msgpack was specified instead of -lmsgpack in the test makefile. --- test/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Makefile.am b/test/Makefile.am index 0f7b139..466649d 100644 --- a/test/Makefile.am +++ b/test/Makefile.am @@ -5,7 +5,7 @@ AM_C_CPPFLAGS = -I../src AM_LDFLAGS = \ ../src/cclog/libcclog.la \ ../src/msgpack/rpc/libmsgpack-rpc.la \ - -lmpio -msgpack + -lmpio -lmsgpack check_HEADERS = \ echo_server.h