diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2011-07-08 11:35:01 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2011-07-08 11:35:01 +0000 |
commit | 3afdef01dce99f4172c8a8642438167e53f6b608 (patch) | |
tree | f9b59cf1fd9a621b1da8670ee9ae1ce334f65444 /eclass/fox.eclass | |
parent | Adding Francois Bissey's fix for bug 366945 (diff) | |
download | historical-3afdef01dce99f4172c8a8642438167e53f6b608.tar.gz historical-3afdef01dce99f4172c8a8642438167e53f6b608.tar.bz2 historical-3afdef01dce99f4172c8a8642438167e53f6b608.zip |
Convert every instance of hasq to has.
Diffstat (limited to 'eclass/fox.eclass')
-rw-r--r-- | eclass/fox.eclass | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/fox.eclass b/eclass/fox.eclass index 9085ec3faab7..33858cf2649a 100644 --- a/eclass/fox.eclass +++ b/eclass/fox.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/fox.eclass,v 1.11 2010/12/02 16:11:32 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/fox.eclass,v 1.12 2011/07/08 11:35:01 ssuominen Exp $ # @ECLASS: fox.eclass # @MAINTAINER: @@ -89,7 +89,7 @@ fox_src_unpack() { unpack ${A} cd "${S}" - hasq src_prepare ${FOX_EXPF} || fox_src_prepare + has src_prepare ${FOX_EXPF} || fox_src_prepare } fox_src_prepare() { @@ -139,7 +139,7 @@ fox_src_configure() { fox_src_compile() { - hasq src_configure ${FOX_EXPF} || fox_src_configure + has src_configure ${FOX_EXPF} || fox_src_configure cd "${S}/${FOX_COMPONENT}" emake || die "compile error" |