Skip to content
Snippets Groups Projects
Commit 02c9c251 authored by Thomas Haller's avatar Thomas Haller
Browse files

build: fix build failure when using different build dir (make distcheck)


`make distcheck` builds outside the source directory using
`../configure --srcdir=..`. This was broken because libnl.sym was
expected in the $(top_srcdir) instead of $(top_builddir).

Signed-off-by: default avatarThomas Haller <thaller@redhat.com>
parent d7aca177
Branches
No related merge requests found
......@@ -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
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment