diff options
author | Emil Velikov <[email protected]> | 2014-05-28 15:43:35 +0100 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2014-05-29 20:01:33 +0100 |
commit | febec731475a5b288cc50660b2d32780e395b950 (patch) | |
tree | e9050d0436fc6aba89c680343e9a8e0afc5c7c43 | |
parent | 6638c55838b8f5186166b7855fdaf41e0a015e88 (diff) |
st/egl: do not link against libloader
Move the link to the final targets, like any other place in
mesa/gallium. This allows better visibilty and will prevent
us from including the library archive twice.
Resolves multiple definition of `loader_get_pci_id_for_fd'
multiple definition of `loader_get_pci_id_for_fd'
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=79263
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=79382
Cc: Chia-I Wu <[email protected]>
Signed-off-by: Emil Velikov <[email protected]>
Reviewed-by: Chia-I Wu <[email protected]>
Tested-by: Michel Dänzer <[email protected]>
-rw-r--r-- | src/gallium/state_trackers/egl/Makefile.am | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/gallium/state_trackers/egl/Makefile.am b/src/gallium/state_trackers/egl/Makefile.am index 26266ed2b6d..b7dcdabffef 100644 --- a/src/gallium/state_trackers/egl/Makefile.am +++ b/src/gallium/state_trackers/egl/Makefile.am @@ -65,7 +65,6 @@ endif if HAVE_EGL_PLATFORM_DRM libegl_la_SOURCES += $(drm_FILES) -libegl_la_LIBADD = $(top_builddir)/src/loader/libloader.la AM_CFLAGS += \ $(LIBDRM_CFLAGS) AM_CPPFLAGS += \ |