diff options
author | Mike Pagano <mpagano@gentoo.org> | 2015-06-27 17:27:15 +0000 |
---|---|---|
committer | Mike Pagano <mpagano@gentoo.org> | 2015-06-27 17:27:15 +0000 |
commit | a006e18be1ddc07440cff3d6b8c20523aa8e980e (patch) | |
tree | 0bed65487b163cc9f0f5f8ec29ac79a7ec0f7673 /eclass | |
parent | Also looks to work fine with vala-0.28 (as other distributions are already us... (diff) | |
download | gentoo-2-a006e18be1ddc07440cff3d6b8c20523aa8e980e.tar.gz gentoo-2-a006e18be1ddc07440cff3d6b8c20523aa8e980e.tar.bz2 gentoo-2-a006e18be1ddc07440cff3d6b8c20523aa8e980e.zip |
Fix for kdbus. Thanks to Arfrever.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/ChangeLog | 5 | ||||
-rw-r--r-- | eclass/kernel-2.eclass | 4 |
2 files changed, 6 insertions, 3 deletions
diff --git a/eclass/ChangeLog b/eclass/ChangeLog index 14b773f2e042..0a33e7dc9f31 100644 --- a/eclass/ChangeLog +++ b/eclass/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for eclass directory # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1688 2015/06/27 15:36:06 mpagano Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1689 2015/06/27 17:27:15 mpagano Exp $ + + 27 Jun 2015; Mike Pagano <mpagano@gentoo.org> kernel-2.eclass: + Fix for kdbus. Thanks to Arfrever. 27 Jun 2015; Mike Pagano <mpagano@gentoo.org> kernel-2.eclass: Add the kdbus use flag and eclass variable to the kernel-2.eclass for diff --git a/eclass/kernel-2.eclass b/eclass/kernel-2.eclass index 9bebe4b62ef5..ced0df4614e3 100644 --- a/eclass/kernel-2.eclass +++ b/eclass/kernel-2.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/kernel-2.eclass,v 1.308 2015/06/27 15:36:06 mpagano Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/kernel-2.eclass,v 1.309 2015/06/27 17:27:15 mpagano Exp $ # Description: kernel.eclass rewrite for a clean base regarding the 2.6 # series of kernel with back-compatibility for 2.4 @@ -454,7 +454,7 @@ if [[ ${ETYPE} == sources ]]; then DESCRIPTION="Sources based on the Linux Kernel." IUSE="symlink build" - if [[ -n K_KDBUS_AVAILABLE ]]; then + if [[ -n ${K_KDBUS_AVAILABLE} ]]; then IUSE="${IUSE} kdbus" fi |