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/qt4-build.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/qt4-build.eclass')
-rw-r--r-- | eclass/qt4-build.eclass | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/qt4-build.eclass b/eclass/qt4-build.eclass index 5997e6d42641..73f54db25fda 100644 --- a/eclass/qt4-build.eclass +++ b/eclass/qt4-build.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/qt4-build.eclass,v 1.90 2011/03/10 23:45:51 wired Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/qt4-build.eclass,v 1.91 2011/07/08 11:35:01 ssuominen Exp $ # @ECLASS: qt4-build.eclass # @MAINTAINER: @@ -174,7 +174,7 @@ qt4-build_src_prepare() { # fix libx11 dependency on non X packages if version_is_at_least "4.7.0_beta2"; then local NOLIBX11PKG="qt-core qt-dbus qt-script qt-sql qt-test qt-xmlpatterns" - hasq ${PN} ${NOLIBX11PKG} && qt_nolibx11 + has ${PN} ${NOLIBX11PKG} && qt_nolibx11 [[ ${PN} == "qt-assistant" ]] && qt_assistant_cleanup fi @@ -601,7 +601,7 @@ generate_qconfigs() { # including qconfig_add and excluding qconfig_remove for x in $(sed -n 's/^QT_CONFIG +=//p' \ "${ROOT}${QTDATADIR}"/mkspecs/qconfig.pri) ${qconfig_add}; do - hasq ${x} ${qconfig_remove} || qconfig_new+=" ${x}" + has ${x} ${qconfig_remove} || qconfig_new+=" ${x}" done # replace the existing QT_CONFIG list with qconfig_new |