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 | baadba17c7b0a2506516dfbdaaa2657ba382e134 (patch) | |
tree | 4d099c7da5d73a6ca9073754ca3713eee085e3dd /eclass/mythtv-plugins.eclass | |
parent | Adding Francois Bissey's fix for bug 366945 (diff) | |
download | gentoo-2-baadba17c7b0a2506516dfbdaaa2657ba382e134.tar.gz gentoo-2-baadba17c7b0a2506516dfbdaaa2657ba382e134.tar.bz2 gentoo-2-baadba17c7b0a2506516dfbdaaa2657ba382e134.zip |
Convert every instance of hasq to has.
Diffstat (limited to 'eclass/mythtv-plugins.eclass')
-rw-r--r-- | eclass/mythtv-plugins.eclass | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/mythtv-plugins.eclass b/eclass/mythtv-plugins.eclass index 39661053ab4c..b95af91be3ce 100644 --- a/eclass/mythtv-plugins.eclass +++ b/eclass/mythtv-plugins.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/mythtv-plugins.eclass,v 1.38 2010/06/16 05:29:21 cardoe Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/mythtv-plugins.eclass,v 1.39 2011/07/08 11:35:01 ssuominen Exp $ # # @ECLASS: mythtv-plugins.eclass # @AUTHOR: Doug Goldstein <cardoe@gentoo.org> @@ -87,7 +87,7 @@ mythtv-plugins_src_configure() { local myconf="" - if hasq ${PN} ${MYTHPLUGINS} ; then + if has ${PN} ${MYTHPLUGINS} ; then for x in ${MYTHPLUGINS} ; do if [[ ${PN} == ${x} ]] ; then myconf="${myconf} --enable-${x}" @@ -113,7 +113,7 @@ mythtv-plugins_src_compile() { } mythtv-plugins_src_install() { - if hasq ${PN} ${MYTHPLUGINS} ; then + if has ${PN} ${MYTHPLUGINS} ; then cd "${S}"/${PN} else die "Package ${PN} is unsupported" |