diff options
author | Donnie Berkholz <dberkholz@gentoo.org> | 2007-11-13 22:50:04 +0000 |
---|---|---|
committer | Donnie Berkholz <dberkholz@gentoo.org> | 2007-11-13 22:50:04 +0000 |
commit | dfb204fc8976e9b6190981c71beb0ed391c8e126 (patch) | |
tree | d829f715b9fd5a97dd7053d6f30079cc86808f3d /eclass | |
parent | Version bumped. Now all helper-apps are merged into binary udevadm. This need... (diff) | |
download | gentoo-2-dfb204fc8976e9b6190981c71beb0ed391c8e126.tar.gz gentoo-2-dfb204fc8976e9b6190981c71beb0ed391c8e126.tar.bz2 gentoo-2-dfb204fc8976e9b6190981c71beb0ed391c8e126.zip |
(#199062) Fix which packages show debug USE flag (John W Eckhart).
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/x-modular.eclass | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/eclass/x-modular.eclass b/eclass/x-modular.eclass index b41916229e50..36b682142618 100644 --- a/eclass/x-modular.eclass +++ b/eclass/x-modular.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/x-modular.eclass,v 1.88 2007/10/15 23:57:37 beandog Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/x-modular.eclass,v 1.89 2007/11/13 22:50:04 dberkholz Exp $ # # Author: Donnie Berkholz <dberkholz@gentoo.org> # @@ -157,13 +157,13 @@ fi # Debugging -- ignore packages that can't be built with debugging if [[ -z "${FONT}" ]] \ - || [[ "${PN/app-doc}" != "${PN}" ]] \ - || [[ "${PN/x11-proto}" != "${PN}" ]] \ - || [[ "${PN/util-macros}" != "${PN}" ]] \ - || [[ "${PN/xbitmaps}" != "${PN}" ]] \ - || [[ "${PN/xkbdata}" != "${PN}" ]] \ - || [[ "${PN/xorg-cf-files}" != "${PN}" ]] \ - || [[ "${PN/xcursor}" != "${PN}" ]] \ + && [[ "${CATEGORY/app-doc}" = "${CATEGORY}" ]] \ + && [[ "${CATEGORY/x11-proto}" = "${CATEGORY}" ]] \ + && [[ "${PN/util-macros}" = "${PN}" ]] \ + && [[ "${PN/xbitmaps}" = "${PN}" ]] \ + && [[ "${PN/xkbdata}" = "${PN}" ]] \ + && [[ "${PN/xorg-cf-files}" = "${PN}" ]] \ + && [[ "${PN/xcursor}" = "${PN}" ]] \ ; then DEBUGGABLE="yes" IUSE="${IUSE} debug" |