diff options
author | Thomas Anderson <gentoofan23@gentoo.org> | 2008-07-11 21:09:39 +0000 |
---|---|---|
committer | Thomas Anderson <gentoofan23@gentoo.org> | 2008-07-11 21:09:39 +0000 |
commit | 7b38417f9e51bd8027c29a956b4281548a8ce94a (patch) | |
tree | 30c87a861217aacc27e748936d766cf7181961d4 /eclass/qt4.eclass | |
parent | Bumping to version 1.6.6 (diff) | |
download | gentoo-2-7b38417f9e51bd8027c29a956b4281548a8ce94a.tar.gz gentoo-2-7b38417f9e51bd8027c29a956b4281548a8ce94a.tar.bz2 gentoo-2-7b38417f9e51bd8027c29a956b4281548a8ce94a.zip |
Fix bug #231469, I fail.
Diffstat (limited to 'eclass/qt4.eclass')
-rw-r--r-- | eclass/qt4.eclass | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/qt4.eclass b/eclass/qt4.eclass index 07de42448047..616b376ae388 100644 --- a/eclass/qt4.eclass +++ b/eclass/qt4.eclass @@ -1,6 +1,6 @@ # Copyright 2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/qt4.eclass,v 1.42 2008/07/08 16:02:03 gentoofan23 Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/qt4.eclass,v 1.43 2008/07/11 21:09:39 gentoofan23 Exp $ # @ECLASS: qt4.eclass # @MAINTAINER: @@ -134,8 +134,8 @@ qt4_pkg_setup() { ;; esac else - ${x} == guiaccessibility && x=${x#gui} - ${x} == qt3accessibility && x=${x#qt3} + [[ ${x} == guiaccessibility ]] && x=${x#gui} + [[ ${x} == qt3accessibility ]] && x=${x#qt3} if ! built_with_use =x11-libs/qt-4* ${x}; then requiredflags="${requiredflags} ${x}" fi |