>From fa31295a503133b1e12f018593ac8a6f0118dfc9 Mon Sep 17 00:00:00 2001 From: Nicolas CARRIER Date: Thu, 19 Dec 2013 11:31:33 +0100 Subject: [PATCH] build: look for libnl.sym in build dir, not src dir When the build dir isn't the source dir, the libnl.sym file is searched in the source dir while being generated in the build dir. --- lib/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Makefile.am b/lib/Makefile.am index f96fc27..4a1e8d9 100644 --- a/lib/Makefile.am +++ b/lib/Makefile.am @@ -11,7 +11,7 @@ AM_CPPFLAGS = \ AM_LDFLAGS = \ -version-info $(LT_CURRENT):$(LT_REVISION):$(LT_AGE) \ - -Wl,--version-script=$(top_srcdir)/libnl.sym + -Wl,--version-script=$(top_builddir)/libnl.sym lib_LTLIBRARIES = \ libnl-3.la libnl-genl-3.la libnl-route-3.la libnl-nf-3.la libnl-idiag-3.la -- 1.8.5.1