Module: Mesa Branch: master Commit: 8da2dab31dfe1f4f0d6297eb33bca55f723fc685 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=8da2dab31dfe1f4f0d6297eb33bca55f723fc685
Author: Knut Andre Tidemann <[email protected]> Date: Fri Jan 11 10:35:48 2013 +0100 targets/egl-static: fix link failure to libwayland-drm Fixes the following build error: CXXLD egl_gallium.la g++: error: ../../../../src/egl/wayland/wayland-drm/.libs/.libs/libwayland-drm.a: No such file or directory Reviewed-by: Andreas Boll <[email protected]> --- src/gallium/targets/egl-static/Makefile.am | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/src/gallium/targets/egl-static/Makefile.am b/src/gallium/targets/egl-static/Makefile.am index 59f2fc1..32b481b 100644 --- a/src/gallium/targets/egl-static/Makefile.am +++ b/src/gallium/targets/egl-static/Makefile.am @@ -79,7 +79,7 @@ if HAVE_EGL_PLATFORM_WAYLAND AM_CPPFLAGS += $(LIBDRM_CFLAGS) egl_gallium_la_LIBADD += \ $(top_builddir)/src/gallium/winsys/sw/wayland/libws_wayland.la \ - $(top_builddir)/src/egl/wayland/wayland-drm/.libs/libwayland-drm.la \ + $(top_builddir)/src/egl/wayland/wayland-drm/libwayland-drm.la \ $(LIBDRM_LIBS) \ $(WAYLAND_LIBS) endif _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
