diff options
Diffstat (limited to 'src/mapi/es2api/ABI-check')
-rwxr-xr-x | src/mapi/es2api/ABI-check | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mapi/es2api/ABI-check b/src/mapi/es2api/ABI-check index 7bc78480f76..a04b03d7d60 100755 --- a/src/mapi/es2api/ABI-check +++ b/src/mapi/es2api/ABI-check @@ -23,7 +23,7 @@ then exit 1 fi -FUNCS=$(nm -D --defined-only $LIB | grep -o 'T gl.*' | cut -c 3- | while read func; do +FUNCS=$($NM -D --defined-only $LIB | grep -o 'T gl.*' | cut -c 3- | while read func; do ( grep -q "^$func$" || echo $func ) <<EOF glActiveShaderProgram glActiveTexture |