summaryrefslogtreecommitdiff
path: root/c
diff options
context:
space:
mode:
authorKazuki Ohta <kzk@il.is.s.u-tokyo.ac.jp>2010-01-21 21:55:06 +0900
committerKazuki Ohta <kzk@il.is.s.u-tokyo.ac.jp>2010-01-21 21:55:06 +0900
commit404a3933154dc57b2e650cdabb51f80e4aeb1dbe (patch)
tree057b31acf321747ecd5ddd13ea8e6427d145f935 /c
parentc69092e110b82f4a6b37759a37cd43dbe8e486ed (diff)
downloadmsgpack-python-404a3933154dc57b2e650cdabb51f80e4aeb1dbe.tar.gz
c, cpp: fix test problem
- using LDADD instead of LDFLAGS - fix include path in test.cpp
Diffstat (limited to 'c')
-rw-r--r--c/Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/c/Makefile.am b/c/Makefile.am
index 23995a5..f84759a 100644
--- a/c/Makefile.am
+++ b/c/Makefile.am
@@ -23,6 +23,6 @@ check_PROGRAMS = \
msgpackc_test_SOURCES = test.cpp
msgpackc_test_CXXFLAGS = -I$(top_srcdir) -I$(top_srcdir)/c
-msgpackc_test_LDFLAGS = libmsgpackc.la -lgtest_main
+msgpackc_test_LDADD = libmsgpackc.la -lgtest_main
TESTS = $(check_PROGRAMS)