diff options
author | Eric Engestrom <[email protected]> | 2017-10-31 18:47:00 +0000 |
---|---|---|
committer | Eric Engestrom <[email protected]> | 2017-11-01 15:43:46 +0000 |
commit | 5d4ffb997059fc22bd0463e648831322f939ade6 (patch) | |
tree | 399d2b92ccf1f0e7131267b6a5c88662893fe861 /src/mapi/es1api | |
parent | 38f338c19a7803a218a9b3249c4d6b2600edd75a (diff) |
mapi: fix .so path in ABI-check
Signed-off-by: Eric Engestrom <[email protected]>
Reviewed-and-Tested-by: Michel Dänzer <[email protected]>
Diffstat (limited to 'src/mapi/es1api')
-rwxr-xr-x | src/mapi/es1api/ABI-check | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mapi/es1api/ABI-check b/src/mapi/es1api/ABI-check index 25970bc4141..bd9d0288d60 100755 --- a/src/mapi/es1api/ABI-check +++ b/src/mapi/es1api/ABI-check @@ -9,7 +9,7 @@ set -eu # 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) -LIB=${1-.libs/libGLESv1_CM.so.1} +LIB=${1-es1api/.libs/libGLESv1_CM.so.1} if ! [ -f "$LIB" ] then |