A previous patch used $NM as an environment variable, but this was only set as a make variable. Make sure it is passed through from make to the environment we use to run tests.
Signed-off-by: Daniel Stone <[email protected]> Reported-by: Pekka Paalanen <[email protected]> Fixes: 6903e4d53925 ("wayland-egl: use correct `nm` path when cross-compiling") Cc: Emil Velikov <[email protected]> --- Makefile.am | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile.am b/Makefile.am index 6f59c369..514468aa 100644 --- a/Makefile.am +++ b/Makefile.am @@ -198,6 +198,7 @@ AM_TESTS_ENVIRONMENT = \ TEST_OUTPUT_DIR='$(top_builddir)/tests/output' \ WAYLAND_EGL_LIB='$(top_builddir)/.libs/libwayland-egl.so' \ SED=$(SED) \ + NM=$(NM) \ ; TESTS = $(built_test_programs) \ -- 2.16.2 _______________________________________________ wayland-devel mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/wayland-devel
