diff options
author | Ryan Lortie <desrt@desrt.ca> | 2013-12-10 13:26:17 -0500 |
---|---|---|
committer | Tanu Kaskinen <tanu.kaskinen@linux.intel.com> | 2013-12-13 13:57:41 +0200 |
commit | 1588212d5afdd44021fe4654175d26b644fe49ef (patch) | |
tree | b7dc5d6be5e4e40a0f54cf97167ad648691254ef /bootstrap.sh | |
parent | 08287011463430d6e4289263b04428b745de1917 (diff) | |
download | pulseaudio-1588212d5afdd44021fe4654175d26b644fe49ef.tar.gz |
bootstrap.sh: use /usr/bin/env to find bash
bootstrap.sh uses some non-POSIX features of bash, so we can't use
/bin/sh. Unlike /bin/sh, bash can be installed anywhere in the path, so
we should use /usr/bin/env to find it.
This helps systems that have bash in /usr/local/bin, for example.
Diffstat (limited to 'bootstrap.sh')
-rwxr-xr-x | bootstrap.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bootstrap.sh b/bootstrap.sh index 8f4d3dce6..08e0fa4c6 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash # This file is part of PulseAudio. # |