diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2006-05-30 01:37:39 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2006-05-30 01:37:39 +0000 |
commit | 1b435f3b69dd534d0fc2769f121aa3884477386c (patch) | |
tree | 279d0dcc4af7d33b75dc6a81ca3bf277123b9c1e /eclass | |
parent | Missed 3.5.2. (diff) | |
download | historical-1b435f3b69dd534d0fc2769f121aa3884477386c.tar.gz historical-1b435f3b69dd534d0fc2769f121aa3884477386c.tar.bz2 historical-1b435f3b69dd534d0fc2769f121aa3884477386c.zip |
use [[ check.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/kde.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/kde.eclass b/eclass/kde.eclass index d771732f6495..ff0ee39be833 100644 --- a/eclass/kde.eclass +++ b/eclass/kde.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/kde.eclass,v 1.160 2006/05/30 01:03:36 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/kde.eclass,v 1.161 2006/05/30 01:37:39 flameeyes Exp $ # # Author Dan Armak <danarmak@gentoo.org> # @@ -55,7 +55,7 @@ SLOT="0" kde_pkg_setup() { if [[ ${PN} != "arts" ]] && [[ ${PN} != "kdelibs" ]] ; then - if [ ${ARTS_REQUIRED} == 'yes' ] || use arts ; then + if [[ ${ARTS_REQUIRED} == 'yes' ]] || use arts ; then if ! built_with_use kde-base/kdelibs arts ; then use arts && \ eerror "You are trying to compile ${CATEGORY}/${PF} with the \"arts\" USE flag enabled." || \ |