From 79cc3ad6bd0d7c19b64def8b4e4fea0483993dc6 Mon Sep 17 00:00:00 2001 From: Emil Velikov Date: Fri, 16 Mar 2018 16:14:54 +0000 Subject: [PATCH] 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 Cc: Daniel Stone Fixes: 85cb5ed64aa ("wayland-egl-symbols-check: pass the DSO name via the build system") Signed-off-by: Emil Velikov Reviewed-by: Pekka Paalanen --- Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.am b/Makefile.am index 2731ee76..6f59c369 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) \ ;