This prevents distcheck from completing. Moving the -lffi at the end of the command fixes the problem.
Signed-off-by: Gaetan Nadon <[email protected]> --- Some expert should take a look at is. The patch may just hide the real problem deeper. tests/Makefile.am | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/tests/Makefile.am b/tests/Makefile.am index 5003348..484e262 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) -- 1.7.5.4 _______________________________________________ wayland-devel mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/wayland-devel
