diff options
author | Sam James <sam@gentoo.org> | 2022-09-23 00:19:09 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-09-23 00:45:43 +0100 |
commit | ba452333dca237866e793ec40d0f387aefa917a3 (patch) | |
tree | a752098adee3fe079fcf5c50ac2cb47d4cc6b805 | |
parent | gcc-config: add comment explaining SELinux-related writable check (diff) | |
download | gcc-config-ba452333dca237866e793ec40d0f387aefa917a3.tar.gz gcc-config-ba452333dca237866e793ec40d0f387aefa917a3.tar.bz2 gcc-config-ba452333dca237866e793ec40d0f387aefa917a3.zip |
*/*: use portable Bash shebang
Useful for Prefix in particular.
Signed-off-by: Sam James <sam@gentoo.org>
-rwxr-xr-x | gcc-config | 4 | ||||
-rwxr-xr-x | tests/run_tests | 2 |
2 files changed, 3 insertions, 3 deletions
@@ -1,5 +1,5 @@ -#!/bin/bash -# Copyright 2002-2021 Gentoo Authors +#!/usr/bin/env bash +# Copyright 2002-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 # Format of /etc/env.d/gcc/ contents: diff --git a/tests/run_tests b/tests/run_tests index 19fbe7b..602aa92 100755 --- a/tests/run_tests +++ b/tests/run_tests @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash # Avoid bash localization of error messages export LC_ALL=C |