diff options
author | 2007-03-13 01:07:08 +0000 | |
---|---|---|
committer | 2007-03-13 01:07:08 +0000 | |
commit | 593bcc319d58bd8613c2b22fe79daab75ccaab04 (patch) | |
tree | 4ea4433c22327a8b689d87edefaddab67efa44e9 /eclass/vim.eclass | |
parent | Replacing text-markup herd with the new sgml herd. (diff) | |
download | gentoo-2-593bcc319d58bd8613c2b22fe79daab75ccaab04.tar.gz gentoo-2-593bcc319d58bd8613c2b22fe79daab75ccaab04.tar.bz2 gentoo-2-593bcc319d58bd8613c2b22fe79daab75ccaab04.zip |
Don't use `which`, use `type -P`.
Diffstat (limited to 'eclass/vim.eclass')
-rw-r--r-- | eclass/vim.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/vim.eclass b/eclass/vim.eclass index d6d93b0e5f44..b51784a6f219 100644 --- a/eclass/vim.eclass +++ b/eclass/vim.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/vim.eclass,v 1.160 2007/02/22 03:23:38 pioto Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/vim.eclass,v 1.161 2007/03/13 01:07:08 pioto Exp $ # Authors: # Ryan Phillips <rphillips@gentoo.org> @@ -468,7 +468,7 @@ vim_src_compile() { # Let Portage do the stripping. Some people like that. if version_is_at_least "7.0_beta" ; then - export ac_cv_prog_STRIP="$(which true ) faking strip" + export ac_cv_prog_STRIP="$(type -P true ) faking strip" fi myconf="${myconf} --with-modified-by=Gentoo-${PVR}" |