diff options
author | Donnie Berkholz <dberkholz@gentoo.org> | 2006-02-28 01:27:21 +0000 |
---|---|---|
committer | Donnie Berkholz <dberkholz@gentoo.org> | 2006-02-28 01:27:21 +0000 |
commit | 830c2a120d5f41c39c1dfc8c318ec72a9a5d48d4 (patch) | |
tree | 519e3b080b28cc08329e2d6dbf96f51181fb4d78 /eclass | |
parent | Use epause instead of sleep. Bug #124321, by Ciaran McCreesh <ciaranm at gent... (diff) | |
download | historical-830c2a120d5f41c39c1dfc8c318ec72a9a5d48d4.tar.gz historical-830c2a120d5f41c39c1dfc8c318ec72a9a5d48d4.tar.bz2 historical-830c2a120d5f41c39c1dfc8c318ec72a9a5d48d4.zip |
Make USE=debug work more nicely with FEATURES=splitdebug.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/x-modular.eclass | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/eclass/x-modular.eclass b/eclass/x-modular.eclass index 6e9f0564d6c9..d9c2bc7802fe 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.45 2006/02/15 21:33:15 spyderous Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/x-modular.eclass,v 1.46 2006/02/28 01:27:21 spyderous Exp $ # # Author: Donnie Berkholz <spyderous@gentoo.org> # @@ -153,7 +153,9 @@ if [[ -z "${FONT}" ]] \ DEBUGGABLE="yes" IUSE="${IUSE} debug" if use debug; then - RESTRICT="${RESTRICT} nostrip" + if ! has splitdebug ${FEATURES}; then + RESTRICT="${RESTRICT} nostrip" + fi fi fi |