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 <memsize@videotron.ca>
This commit is contained in:
Gaetan Nadon 2012-03-04 12:15:31 -05:00 committed by Kristian Høgsberg
parent 7ee21abef0
commit bb4b05bc8d

View file

@ -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)