From bb4b05bc8d0df6dc119a20bdaad30a0849a028be Mon Sep 17 00:00:00 2001 From: Gaetan Nadon Date: Sun, 4 Mar 2012 12:15:31 -0500 Subject: [PATCH] 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 --- tests/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.7.4