diff options
author | Thomas Anderson <tanderson@gentoo.org> | 2008-07-11 21:09:39 +0000 |
---|---|---|
committer | Thomas Anderson <tanderson@gentoo.org> | 2008-07-11 21:09:39 +0000 |
commit | 79e3d86153bd0eb8ffef70a3f6785f5d399c6c12 (patch) | |
tree | fd59cce8159103cf748b027497f4395e1a9d37ba | |
parent | Bumping to version 1.6.6 (diff) | |
download | historical-79e3d86153bd0eb8ffef70a3f6785f5d399c6c12.tar.gz historical-79e3d86153bd0eb8ffef70a3f6785f5d399c6c12.tar.bz2 historical-79e3d86153bd0eb8ffef70a3f6785f5d399c6c12.zip |
Fix bug #231469, I fail.
-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 |