diff options
author | 2008-07-09 01:17:08 -0400 | |
---|---|---|
committer | 2008-07-09 01:17:08 -0400 | |
commit | 8f0a81f559104cc2fb5019174a94ee876e5eec03 (patch) | |
tree | d1e775a19fe7551b79e88c5cfaa8935826bb92fe /paludis/repositories/e/ebuild/utils/doexe | |
parent | df236f53f37b51d462b428ce1ff84943366c4acc (diff) | |
download | paludis-8f0a81f559104cc2fb5019174a94ee876e5eec03.tar.gz paludis-8f0a81f559104cc2fb5019174a94ee876e5eec03.tar.xz |
Use /usr/bin/env bash instead of /bin/bash for the shebang of shell scripts.
This should make things run more nicely on systems like FreeBSD, where
bash isn't installed in /bin.
Diffstat (limited to 'paludis/repositories/e/ebuild/utils/doexe')
-rwxr-xr-x | paludis/repositories/e/ebuild/utils/doexe | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/paludis/repositories/e/ebuild/utils/doexe b/paludis/repositories/e/ebuild/utils/doexe index e3f320755..92723cfd5 100755 --- a/paludis/repositories/e/ebuild/utils/doexe +++ b/paludis/repositories/e/ebuild/utils/doexe @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash # vim: set sw=4 sts=4 et : # Copyright (c) 2006 Stephen Bennett |