diff options
author | Vinson Lee <[email protected]> | 2013-10-11 18:33:08 -0700 |
---|---|---|
committer | Vinson Lee <[email protected]> | 2013-11-20 22:39:59 -0800 |
commit | b7c0b61782251c1dedb0b0fb0e6654af81249910 (patch) | |
tree | a890d12335458e1cc87c195e8ac6c1c60f12449d /src/glsl/tests/optimization-test | |
parent | 7f56780915e352fda80b0e062591995021916859 (diff) |
glsl: Use more portable bash invocation construct.
Fixes 'make check' on distros where bash is not at /bin/bash.
Signed-off-by: Vinson Lee <[email protected]>
Reviewed-by: Brian Paul <[email protected]>
Reviewed-by: Ian Romanick <[email protected]>
Tested-by: Ian Romanick <[email protected]>
Diffstat (limited to 'src/glsl/tests/optimization-test')
-rwxr-xr-x | src/glsl/tests/optimization-test | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/glsl/tests/optimization-test b/src/glsl/tests/optimization-test index 59383f8f912..8ca7776919f 100755 --- a/src/glsl/tests/optimization-test +++ b/src/glsl/tests/optimization-test @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash if [ ! -z "$srcdir" ]; then compare_ir=`pwd`/tests/compare_ir |