From e29e477ff84ab16938e58ae2719358c14c86a500 Mon Sep 17 00:00:00 2001 From: Gaetan Nadon Date: Fri, 15 Oct 2010 17:34:16 -0400 Subject: config: use LDADD to obtain appropriate dependencies In generated scanpci/Makefile, this line is added: scanpci_DEPENDENCIES = $(top_builddir)/src/libpciaccess.la If the content of the library changes, the tool will rebuild. When scanpci was in the same directory as the library, the .la file was used. This will also ensure the "installed" pciaccess library is not used. Signed-off-by: Gaetan Nadon --- scanpci/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scanpci/Makefile.am b/scanpci/Makefile.am index 6fdf86e..68d54f4 100644 --- a/scanpci/Makefile.am +++ b/scanpci/Makefile.am @@ -24,6 +24,6 @@ noinst_PROGRAMS = scanpci AM_CPPFLAGS = -I$(top_srcdir)/include -AM_LDFLAGS = -L$(top_builddir)/src -lpciaccess +LDADD = $(top_builddir)/src/libpciaccess.la scanpci_SOURCES = scanpci.c -- cgit v1.2.3