diff options
author | Mike Frysinger <vapier@gentoo.org> | 2006-09-14 07:01:29 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2006-09-14 07:01:29 +0000 |
commit | 5599ab38505462219eaed187a241f884ddca5593 (patch) | |
tree | 3882eca9ab63db7dbad79cd1978df7cd89a641b4 /eclass | |
parent | skip sanity checks in built_with_use() for IUSE with USE_EXPAND #147237 (diff) | |
download | gentoo-2-5599ab38505462219eaed187a241f884ddca5593.tar.gz gentoo-2-5599ab38505462219eaed187a241f884ddca5593.tar.bz2 gentoo-2-5599ab38505462219eaed187a241f884ddca5593.zip |
fix typo in previous commit
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/eutils.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/eutils.eclass b/eclass/eutils.eclass index 93fd746fa1c0..1ef494281961 100644 --- a/eclass/eutils.eclass +++ b/eclass/eutils.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/eutils.eclass,v 1.250 2006/09/14 06:58:01 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/eutils.eclass,v 1.251 2006/09/14 07:01:29 vapier Exp $ # # This eclass is for general purpose functions that most ebuilds # have to implement themselves. @@ -1610,7 +1610,7 @@ built_with_use() { break fi done - if [[ -z ${expand} ]] ; then + if [[ -n ${expand} ]] ; then has $1 ${IUSE_BUILT} || die "$PKG does not actually support the $1 USE flag!" fi |