diff options
author | Nirbheek Chauhan <nirbheek@gentoo.org> | 2011-04-24 16:52:11 +0000 |
---|---|---|
committer | Nirbheek Chauhan <nirbheek@gentoo.org> | 2011-04-24 16:52:11 +0000 |
commit | 37852f215ea6e907857dc814d2b58441fab2550b (patch) | |
tree | c16a5e5068e9c2f301318a132e4a1c613f6aa256 /eclass/mozconfig-3.eclass | |
parent | version bump (diff) | |
download | gentoo-2-37852f215ea6e907857dc814d2b58441fab2550b.tar.gz gentoo-2-37852f215ea6e907857dc814d2b58441fab2550b.tar.bz2 gentoo-2-37852f215ea6e907857dc814d2b58441fab2550b.zip |
Fix 'has' check for ipc in IUSE, it's +ipc everywhere
Diffstat (limited to 'eclass/mozconfig-3.eclass')
-rw-r--r-- | eclass/mozconfig-3.eclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/eclass/mozconfig-3.eclass b/eclass/mozconfig-3.eclass index 352aeff68a06..a6bfc95bf361 100644 --- a/eclass/mozconfig-3.eclass +++ b/eclass/mozconfig-3.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/mozconfig-3.eclass,v 1.18 2011/04/20 03:59:38 darkside Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/mozconfig-3.eclass,v 1.19 2011/04/24 16:52:11 nirbheek Exp $ # # mozconfig.eclass: the new mozilla.eclass @@ -45,7 +45,7 @@ mozconfig_config() { mozconfig_use_enable debug mozconfig_use_enable debug tests mozconfig_use_enable debug debugger-info-modeules - if has ipc ${IUSE}; then + if has +ipc ${IUSE}; then mozconfig_use_enable ipc fi mozconfig_use_enable libnotify |