From ca5dd4d0a1fd063676027427fb1768cd3b473868 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Denis-Courmont?= Date: Fri, 28 Oct 2016 21:59:35 +0300 Subject: [PATCH] test: fix linking (with --disable-shared) --- test/Makefile.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/Makefile.am b/test/Makefile.am index 77317822d8..e47430e02e 100644 --- a/test/Makefile.am +++ b/test/Makefile.am @@ -69,8 +69,8 @@ samples/meta.sample: AM_CFLAGS = -DSRCDIR=\"$(srcdir)\" AM_LDFLAGS = -no-install -LIBVLCCORE = ../src/libvlccore.la -LIBVLC = ../lib/libvlc.la +LIBVLCCORE = -L../src/ -lvlccore +LIBVLC = -L../lib -lvlc test_libvlc_core_SOURCES = libvlc/core.c test_libvlc_core_LDADD = $(LIBVLC) -- GitLab