From a894011dc4e9daed1f6bacbac7ee987e2c894668 Mon Sep 17 00:00:00 2001
From: Alberto Bertogli <albertito@blitiri.com.ar>
Date: Sat, 26 Feb 2011 14:18:51 +0000
Subject: [PATCH 09/24] Use /usr/bin/env bash instead of /bin/bash

Not every system has /bin/bash, use /usr/bin/env bash which is more portable.

Signed-off-by: Alberto Bertogli <albertito@blitiri.com.ar>
---
 tests/util/build_lib_env.sh  |    2 +-
 tests/util/quick-test-run.sh |    2 +-
 tests/util/wrap-python       |    2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/tests/util/build_lib_env.sh b/tests/util/build_lib_env.sh
index f3f3234..ffa870c 100755
--- a/tests/util/build_lib_env.sh
+++ b/tests/util/build_lib_env.sh
@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/usr/bin/env bash
 
 # Apply the environment changes needed to use the built (and not the
 # installed) versions of the library and Python bindings.
diff --git a/tests/util/quick-test-run.sh b/tests/util/quick-test-run.sh
index 54aa4af..9f7ffd0 100755
--- a/tests/util/quick-test-run.sh
+++ b/tests/util/quick-test-run.sh
@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/usr/bin/env bash
 
 # This is a convenience script for running some of the other tests without
 # manual intervention, as a means of a fast and easy correctness test.
diff --git a/tests/util/wrap-python b/tests/util/wrap-python
index bd75575..e478bc8 100755
--- a/tests/util/wrap-python
+++ b/tests/util/wrap-python
@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/usr/bin/env bash
 
 # Python 2 wrapper, which makes it able to import the build (and not the
 # installed) version of libjio.
-- 
1.6.2.2.646.gb214

