diff options
author | Joshua Nichols <nichoj@gentoo.org> | 2007-02-03 00:35:12 +0000 |
---|---|---|
committer | Joshua Nichols <nichoj@gentoo.org> | 2007-02-03 00:35:12 +0000 |
commit | dfafc4e433f58f7749f14a69a2c03d6b7cd8340c (patch) | |
tree | 31d346434b563cc7ae06e7227339cfab17d46894 /eclass | |
parent | Version bump (diff) | |
download | historical-dfafc4e433f58f7749f14a69a2c03d6b7cd8340c.tar.gz historical-dfafc4e433f58f7749f14a69a2c03d6b7cd8340c.tar.bz2 historical-dfafc4e433f58f7749f14a69a2c03d6b7cd8340c.zip |
Fixed cases when doc, startup-notification, or debug use flags are disabled. See bug #164881.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/xfce44.eclass | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/eclass/xfce44.eclass b/eclass/xfce44.eclass index 7c804abdeecd..2e3ae4bbb313 100644 --- a/eclass/xfce44.eclass +++ b/eclass/xfce44.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/xfce44.eclass,v 1.15 2007/01/29 17:47:44 welp Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/xfce44.eclass,v 1.16 2007/02/03 00:35:12 nichoj Exp $ # Xfce44 Eclass # @@ -113,15 +113,15 @@ xfce44_want_einstall() { xfce44_src_compile() { ## XFCE_CONFIG sets extra config parameters - if has doc ${IUSE} && use doc ; then + if has doc ${IUSE}; then XFCE_CONFIG="${XFCE_CONFIG} $(use_enable doc gtk-doc)" fi - if has startup-notification ${IUSE} && use startup-notification ; then + if has startup-notification ${IUSE}; then XFCE_CONFIG="${XFCE_CONFIG} $(use_enable startup-notification)" fi - if has debug ${IUSE} && use debug ; then + if has debug ${IUSE}; then XFCE_CONFIG="${XFCE_CONFIG} $(use_enable debug)" fi ${CONFIGURE} ${XFCE_CONFIG} || die |