summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEmil Velikov <emil.velikov@collabora.com>2018-02-23 17:31:53 +0000
committerDaniel Stone <daniels@collabora.com>2018-02-23 17:38:22 +0000
commit6903e4d5392563b36aabc8ebc69cb1a08dd2de0e (patch)
tree3c28b0d9709bd4bc2ee1de8466226ee208da03f6
parentb02c4013e3c10d26c6afae675eec77a97c4c10ab (diff)
downloadwayland-6903e4d5392563b36aabc8ebc69cb1a08dd2de0e.tar.gz
wayland-egl: use correct `nm` path when cross-compiling
Inspired by Heiko Becker and Eric's work in libdrm and Mesa respectively. Cc: Eric Engestrom <eric.engestrom@imgtec.com> Signed-off-by: Emil Velikov <emil.velikov@collabora.com> Reviewed-by: Daniel Stone <daniels@collabora.com>
-rw-r--r--configure.ac1
-rwxr-xr-xegl/wayland-egl-symbols-check2
2 files changed, 2 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 2542243..91f837d 100644
--- a/configure.ac
+++ b/configure.ac
@@ -29,6 +29,7 @@ AC_PROG_CC
AC_PROG_CXX
AC_PROG_GREP
AM_PROG_AS
+AC_PROG_NM
# check if we have C++ compiler. This is hacky workaround,
# for a reason why it is this way see
diff --git a/egl/wayland-egl-symbols-check b/egl/wayland-egl-symbols-check
index e107362..6ad28f3 100755
--- a/egl/wayland-egl-symbols-check
+++ b/egl/wayland-egl-symbols-check
@@ -1,6 +1,6 @@
#!/bin/sh
-FUNCS=$(nm -D --defined-only ${WAYLAND_EGL_LIB} | 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 ) <<EOF
wl_egl_window_resize
wl_egl_window_create