From: Gaetan Nadon Date: Sun, 4 Mar 2012 17:15:31 +0000 (-0500) Subject: check: connection-test fails to link to ffi X-Git-Tag: 0.94.90~169 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=bb4b05bc8d0df6dc119a20bdaad30a0849a028be;p=profile%2Fivi%2Fwayland.git check: connection-test fails to link to ffi This prevents distcheck from completing. Moving the -lffi at the end of the command fixes the problem. Signed-off-by: Gaetan Nadon --- diff --git a/tests/Makefile.am b/tests/Makefile.am index c6e1007..30a8348 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -8,5 +8,5 @@ array_test_SOURCES = array-test.c test-runner.c connection_test_SOURCES = connection-test.c test-runner.c AM_CFLAGS = $(GCC_CFLAGS) -LDADD = $(FFI_LIBS) $(top_builddir)/src/libwayland-util.la -lrt +LDADD = $(top_builddir)/src/libwayland-util.la -lrt $(FFI_LIBS)