On Sunday, 2018-10-07 23:29:04 +0000, Vinson Lee wrote:
> Signed-off-by: Vinson Lee <[email protected]>
> ---
>  src/egl/egl-symbols-check | 7 ++++++-
>  1 file changed, 6 insertions(+), 1 deletion(-)
> 
> diff --git a/src/egl/egl-symbols-check b/src/egl/egl-symbols-check
> index 460e61a357c7..4200f9c07f3a 100755
> --- a/src/egl/egl-symbols-check
> +++ b/src/egl/egl-symbols-check
> @@ -1,7 +1,12 @@
>  #!/bin/sh
>  set -eu
>  
> -LIB=${1-.libs/libEGL.so}
> +if [ "$(uname)" = "Darwin" ]
> +then
> +  LIB=${1-.libs/libEGL.dylib}

This matches the name format in the gles{1,2} checks, so:
Reviewed-by: Eric Engestrom <[email protected]>

> +else
> +  LIB=${1-.libs/libEGL.so}
> +fi
>  
>  if ! [ -f "$LIB" ]
>  then
> -- 
> 2.17.1.dropbox.0
> 
> _______________________________________________
> mesa-dev mailing list
> [email protected]
> https://lists.freedesktop.org/mailman/listinfo/mesa-dev
_______________________________________________
mesa-dev mailing list
[email protected]
https://lists.freedesktop.org/mailman/listinfo/mesa-dev

Reply via email to