From: Vinson Lee Date: Tue, 21 Jul 2015 21:02:01 +0000 (-0700) Subject: ABI-check: Use more portable bash invocation. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=2ef5a4f8304ed368e56806e1e2be6e7d2bd290f7;p=mesa.git ABI-check: Use more portable bash invocation. Fixes 'make check' on FreeBSD. Signed-off-by: Vinson Lee Reviewed-by: Matt Turner --- diff --git a/src/mapi/es1api/ABI-check b/src/mapi/es1api/ABI-check index 44654cde863..819568f6d1a 100755 --- a/src/mapi/es1api/ABI-check +++ b/src/mapi/es1api/ABI-check @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash # 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 abbb55c2232..e0bf3c83143 100755 --- a/src/mapi/es2api/ABI-check +++ b/src/mapi/es2api/ABI-check @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash # Print defined gl.* functions not in GL ES 3.0 or in # (FIXME, none of these should be part of the ABI)