diff options
author | Emil Velikov <[email protected]> | 2017-02-22 19:57:31 +0000 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2017-03-10 14:12:48 +0000 |
commit | 1c3a1d74ec250bd0b51413a24466cab085c7d55e (patch) | |
tree | 3ba2ccceb0d6599a0d98e28eeaec62d7a5adb5cf | |
parent | f7e7708d752bcf9500d1a730ae7b69c45a5c50d6 (diff) |
wayland-egl/wayland-egl-symbols-check: do not mandate bash
Signed-off-by: Emil Velikov <[email protected]>
Reviewed-by: Andreas Boll <[email protected]>
Reviewed-by: Eric Engestrom <[email protected]>
-rwxr-xr-x | src/egl/wayland/wayland-egl/wayland-egl-symbols-check | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/egl/wayland/wayland-egl/wayland-egl-symbols-check b/src/egl/wayland/wayland-egl/wayland-egl-symbols-check index 0c5fd09a012..e7105ea5793 100755 --- a/src/egl/wayland/wayland-egl/wayland-egl-symbols-check +++ b/src/egl/wayland/wayland-egl/wayland-egl-symbols-check @@ -1,4 +1,4 @@ -#!/bin/bash +#!/bin/sh FUNCS=$(nm -D --defined-only ${1-.libs/libwayland-egl.so} | grep -o "T .*" | cut -c 3- | while read func; do ( grep -q "^$func$" || echo $func ) <<EOF |