diff options
author | Knut Andre Tidemann <[email protected]> | 2013-01-11 10:35:48 +0100 |
---|---|---|
committer | Andreas Boll <[email protected]> | 2013-01-11 10:56:36 +0100 |
commit | 8da2dab31dfe1f4f0d6297eb33bca55f723fc685 (patch) | |
tree | 22803b7c573ae796e743bf5f08c9736972c58e87 /src/gallium/targets | |
parent | d98716233e3cc7ed18323a75ac274f70453ed442 (diff) |
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]>
Diffstat (limited to 'src/gallium/targets')
-rw-r--r-- | 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 59f2fc1722d..32b481b76ea 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 |