diff options
author | Emil Velikov <emil.velikov@collabora.com> | 2017-02-22 16:04:05 +0000 |
---|---|---|
committer | Emil Velikov <emil.l.velikov@gmail.com> | 2017-03-10 14:12:47 +0000 |
commit | 9a502f5c47211366ab5b35d185d80b4b69089dd8 (patch) | |
tree | c6a3becbefdfa675aa9b6ebdf33a9efa6d53a5d8 /src/mapi | |
parent | d73603fcdd63376080e90d03d96de402386c34f8 (diff) |
mapi: do not mandate bash for es*api/ABI-check
Seemingly there is nothing bash specific in these. The Debian
checkbashisms does not spot neither run in zsh.
Signed-off-by: Emil Velikov <emil.velikov@collabora.com>
Reviewed-by: Eric Engestrom <eric.engestrom@imgtec.com>
Diffstat (limited to 'src/mapi')
-rwxr-xr-x | src/mapi/es1api/ABI-check | 2 | ||||
-rwxr-xr-x | src/mapi/es2api/ABI-check | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/mapi/es1api/ABI-check b/src/mapi/es1api/ABI-check index 819568f6d1..223658b32e 100755 --- a/src/mapi/es1api/ABI-check +++ b/src/mapi/es1api/ABI-check @@ -1,4 +1,4 @@ -#!/usr/bin/env bash +#!/bin/sh # Print defined gl.* functions not in GL ES 1.1 or in # (FIXME, none of these should be part of the ABI) diff --git a/src/mapi/es2api/ABI-check b/src/mapi/es2api/ABI-check index e0bf3c8314..5c9e826624 100755 --- a/src/mapi/es2api/ABI-check +++ b/src/mapi/es2api/ABI-check @@ -1,4 +1,4 @@ -#!/usr/bin/env bash +#!/bin/sh # Print defined gl.* functions not in GL ES 3.0 or in # (FIXME, none of these should be part of the ABI) |