summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEmil Velikov <emil.velikov@collabora.com>2018-03-16 16:14:54 +0000
committerPekka Paalanen <pekka.paalanen@collabora.co.uk>2018-03-19 11:39:49 +0200
commit79cc3ad6bd0d7c19b64def8b4e4fea0483993dc6 (patch)
tree69fe5c6791818479e5df55b935e6558d4aec75e9
parentf34af17b219f1eaa0d091a687124fbb8b7a3c81b (diff)
wayland-egl: set the correct path to libwayland-egl.so
Earlier commit changed to passing the binary name as env. variable introducing a typo. That went unnoticed, since we do not check if the file is present or not. Cc: Pukka Paalanen <ppaalanen@gmail.com> Cc: Daniel Stone <daniels@collabora.com> Fixes: 85cb5ed64aa ("wayland-egl-symbols-check: pass the DSO name via the build system") Signed-off-by: Emil Velikov <emil.velikov@collabora.com> Reviewed-by: Pekka Paalanen <pekka.paalanen@collabora.co.uk>
-rw-r--r--Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am
index 2731ee7..6f59c36 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -196,7 +196,7 @@ AM_TESTS_ENVIRONMENT = \
export WAYLAND_SCANNER='$(top_builddir)/wayland-scanner' \
TEST_DATA_DIR='$(top_srcdir)/tests/data' \
TEST_OUTPUT_DIR='$(top_builddir)/tests/output' \
- WAYLAND_EGL_LIB='$(top_builddir)/egl/.libs/libwayland-egl.so' \
+ WAYLAND_EGL_LIB='$(top_builddir)/.libs/libwayland-egl.so' \
SED=$(SED) \
;