summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Lortie <desrt@desrt.ca>2013-12-10 13:26:17 -0500
committerTanu Kaskinen <tanu.kaskinen@linux.intel.com>2013-12-13 13:57:41 +0200
commit1588212d5afdd44021fe4654175d26b644fe49ef (patch)
treeb7dc5d6be5e4e40a0f54cf97167ad648691254ef
parent08287011463430d6e4289263b04428b745de1917 (diff)
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.
-rwxr-xr-xbootstrap.sh2
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.
#