diff options
author | Markus Duft <mduft@gentoo.org> | 2010-02-24 08:08:28 +0000 |
---|---|---|
committer | Markus Duft <mduft@gentoo.org> | 2010-02-24 08:08:28 +0000 |
commit | 6776088b842e845ef7d774d6a2b2fd267260d747 (patch) | |
tree | eebf023fe343e8c353600034eeddf19c9b27a774 | |
parent | Create a real new version rather than mucking with the FILESDIR. (diff) | |
download | autotools-wrappers-6776088b842e845ef7d774d6a2b2fd267260d747.tar.gz autotools-wrappers-6776088b842e845ef7d774d6a2b2fd267260d747.tar.bz2 autotools-wrappers-6776088b842e845ef7d774d6a2b2fd267260d747.zip |
fixed prefix support -> dont use /bin/bash in the shebang, since bash may not be installed in the host system.
Package-Manager: portage-2.1.7.16/cvs/Linux i686
-rwxr-xr-x | am-wrapper.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/am-wrapper.sh b/am-wrapper.sh index b2adc42..2b222ce 100755 --- a/am-wrapper.sh +++ b/am-wrapper.sh @@ -1,7 +1,7 @@ -#!/bin/bash +#!/usr/bin/env bash # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/automake-wrapper/files/am-wrapper-4.sh,v 1.1 2009/05/17 21:36:04 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/automake-wrapper/files/am-wrapper-4.sh,v 1.2 2010/02/24 08:08:28 mduft Exp $ # Based on the am-wrapper.pl script provided by MandrakeSoft # Rewritten in bash by Gregorio Guidi |