gles1: fail symbol check if lib is missing
authorEric Engestrom <eric.engestrom@imgtec.com>
Mon, 30 Oct 2017 15:28:08 +0000 (15:28 +0000)
committerEric Engestrom <eric.engestrom@imgtec.com>
Tue, 31 Oct 2017 17:59:34 +0000 (17:59 +0000)
Signed-off-by: Eric Engestrom <eric.engestrom@imgtec.com>
Reviewed-by: Dylan Baker <dylan@pnwbakers.com>
Reviewed-by: Emil Velikov <emil.velikov@collabora.com>
src/mapi/es1api/ABI-check

index 223658b32e08edf775581afa09f7462e3cf5b544..25970bc41419eac5b54498afa4d735ec575b1492 100755 (executable)
@@ -1,4 +1,5 @@
 #!/bin/sh
+set -eu
 
 # Print defined gl.* functions not in GL ES 1.1 or in
 # (FIXME, none of these should be part of the ABI)
@@ -8,7 +9,14 @@
 # or in extensions that are part of the ES 1.1 extension pack.
 # (see http://www.khronos.org/registry/gles/specs/1.1/opengles_spec_1_1_extension_pack.pdf)
 
-FUNCS=$(nm -D --defined-only ${1-.libs/libGLESv1_CM.so.1} | grep -o 'T gl.*' | cut -c 3- | while read func; do
+LIB=${1-.libs/libGLESv1_CM.so.1}
+
+if ! [ -f "$LIB" ]
+then
+  exit 1
+fi
+
+FUNCS=$(nm -D --defined-only $LIB | grep -o 'T gl.*' | cut -c 3- | while read func; do
 ( grep -q "^$func$" || echo $func )  <<EOF
 glActiveTexture
 glAlphaFunc