From 85cb5ed64aa8246f4da93fc5b76dfc34096bf803 Mon Sep 17 00:00:00 2001 From: Emil Velikov Date: Tue, 10 Oct 2017 14:43:49 +0100 Subject: [PATCH] wayland-egl-symbols-check: pass the DSO name via the build system The location of the file is build system specific so, keep it there. Cc: Daniel Stone Suggested-by: Daniel Stone Signed-off-by: Emil Velikov Reviewed-by: Arnaud Vrac --- Makefile.am | 1 + egl/wayland-egl-symbols-check | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile.am b/Makefile.am index 1e934fe..deafc04 100644 --- a/Makefile.am +++ b/Makefile.am @@ -191,6 +191,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' \ SED=$(SED) \ ; diff --git a/egl/wayland-egl-symbols-check b/egl/wayland-egl-symbols-check index e7105ea..e107362 100755 --- a/egl/wayland-egl-symbols-check +++ b/egl/wayland-egl-symbols-check @@ -1,6 +1,6 @@ #!/bin/sh -FUNCS=$(nm -D --defined-only ${1-.libs/libwayland-egl.so} | grep -o "T .*" | cut -c 3- | while read func; do +FUNCS=$(nm -D --defined-only ${WAYLAND_EGL_LIB} | grep -o "T .*" | cut -c 3- | while read func; do ( grep -q "^$func$" || echo $func ) <