diff options
author | Stuart Abercrombie <sabercrombie@chromium.org> | 2012-12-05 11:59:42 -0800 |
---|---|---|
committer | Eric Anholt <eric@anholt.net> | 2012-12-06 18:47:57 -0800 |
commit | 15610578faee2eae1e46de7ff2ae012ebbbde088 (patch) | |
tree | 45b946d797fe47432674230f6ad93a6e0f71381d /tests/glslparsertest | |
parent | 8c7e49c402025a3db3675954377478bd832189dd (diff) |
Fix shell scripts that claim to run with /bin/sh but actually need /bin/bash.
With this change they run on, for instance the last 6 years of Ubuntu.
Signed-off-by: Stuart Abercrombie <sabercrombie@chromium.org>
Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
Reviewed-by: Eric Anholt <eric@anholt.net>
Diffstat (limited to 'tests/glslparsertest')
-rwxr-xr-x | tests/glslparsertest/glsl2/make_tex_lod_tests.sh | 2 | ||||
-rwxr-xr-x | tests/glslparsertest/glsl2/make_tex_rect_tests.sh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/glslparsertest/glsl2/make_tex_lod_tests.sh b/tests/glslparsertest/glsl2/make_tex_lod_tests.sh index ad6acbab8..1324cb111 100755 --- a/tests/glslparsertest/glsl2/make_tex_lod_tests.sh +++ b/tests/glslparsertest/glsl2/make_tex_lod_tests.sh @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash function gen_frag_test { diff --git a/tests/glslparsertest/glsl2/make_tex_rect_tests.sh b/tests/glslparsertest/glsl2/make_tex_rect_tests.sh index c747d8877..f9dccda30 100755 --- a/tests/glslparsertest/glsl2/make_tex_rect_tests.sh +++ b/tests/glslparsertest/glsl2/make_tex_rect_tests.sh @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash function gen_frag_test { |