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.
This commit is contained in:
Ryan Lortie 2013-12-10 13:26:17 -05:00 committed by Tanu Kaskinen
parent 0828701146
commit 1588212d5a

View file

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# This file is part of PulseAudio.
#