From f7db7b0acc141e442cc428387dda72257b9ec7af Mon Sep 17 00:00:00 2001 From: Ryan Lortie Date: Tue, 10 Dec 2013 13:26:17 -0500 Subject: [PATCH 1/2] 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. --- bootstrap.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bootstrap.sh b/bootstrap.sh index 8f4d3dc..08e0fa4 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash # This file is part of PulseAudio. # -- 1.8.4.2