diff options
author | Philippe Mathieu-Daudé <philmd@redhat.com> | 2019-03-07 15:58:38 +0100 |
---|---|---|
committer | Kevin Wolf <kwolf@redhat.com> | 2019-03-08 12:26:45 +0100 |
commit | 11a82d14293cd66f428f535741717ff338c0722b (patch) | |
tree | d58877662e23aae2dce03286741add9cafe650ef /tests/qemu-iotests/176 | |
parent | d68375816eca9e60d7c7edb290b1964d4d83e346 (diff) | |
download | qemu-11a82d14293cd66f428f535741717ff338c0722b.zip qemu-11a82d14293cd66f428f535741717ff338c0722b.tar.gz qemu-11a82d14293cd66f428f535741717ff338c0722b.tar.bz2 |
qemu-iotests: Improve portability by searching bash in the $PATH
Bash is not always installed as /bin/bash. In particular on OpenBSD,
the package installs it in /usr/local/bin.
Use the 'env' shebang to search bash in the $PATH.
Patch created mechanically by running:
$ git grep -lE '#! ?/bin/bash' -- tests/qemu-iotests \
| while read f; do \
sed -i 's|^#!.\?/bin/bash$|#!/usr/bin/env bash|' $f; \
done
Reviewed-by: Eric Blake <eblake@redhat.com>
Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Signed-off-by: Kevin Wolf <kwolf@redhat.com>
Diffstat (limited to 'tests/qemu-iotests/176')
-rwxr-xr-x | tests/qemu-iotests/176 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/qemu-iotests/176 b/tests/qemu-iotests/176 index 4ecd589..50df4c0 100755 --- a/tests/qemu-iotests/176 +++ b/tests/qemu-iotests/176 @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash # # Commit changes into backing chains and empty the top image if the # backing image is not explicitly specified. |