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 <[email protected]> --- scanpci/Makefile.am | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) 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 -- 1.6.0.4 _______________________________________________ [email protected]: X.Org development Archives: http://lists.x.org/archives/xorg-devel Info: http://lists.x.org/mailman/listinfo/xorg-devel
