diff options
author | Gaetan Nadon <memsize@videotron.ca> | 2012-03-04 12:15:31 -0500 |
---|---|---|
committer | Kristian Høgsberg <krh@bitplanet.net> | 2012-03-04 15:03:03 -0500 |
commit | bb4b05bc8d0df6dc119a20bdaad30a0849a028be (patch) | |
tree | 0b890aa52ae7541f89389ae8a7c45f4f2b0259dd /tests | |
parent | 7ee21abef0d07df5d74475f63d4b2b5991af4937 (diff) |
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>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
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) |