diff options
author | Elfyn McBratney <beu@gentoo.org> | 2007-01-05 04:41:17 +0000 |
---|---|---|
committer | Elfyn McBratney <beu@gentoo.org> | 2007-01-05 04:41:17 +0000 |
commit | d688d964fce619933a57ca8c6c9a6503a33bc3ac (patch) | |
tree | d93a62bf5a06cbbb5111eced26aa376ed972350c /eclass | |
parent | Remove debug.eclass usage. (diff) | |
download | historical-d688d964fce619933a57ca8c6c9a6503a33bc3ac.tar.gz historical-d688d964fce619933a57ca8c6c9a6503a33bc3ac.tar.bz2 historical-d688d964fce619933a57ca8c6c9a6503a33bc3ac.zip |
Kill 'inherit debug'.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/vim.eclass | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/eclass/vim.eclass b/eclass/vim.eclass index 1ed5b895a110..b7f882ff0a37 100644 --- a/eclass/vim.eclass +++ b/eclass/vim.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/vim.eclass,v 1.157 2007/01/03 01:48:54 truedfx Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/vim.eclass,v 1.158 2007/01/05 04:41:17 beu Exp $ # Authors: # Ryan Phillips <rphillips@gentoo.org> @@ -29,7 +29,9 @@ MY_PN="${PN%-cvs}" # constant at cache creation time. It's therefore legal and doesn't break # anything. I even checked with carpaski first :) (08 Sep 2004 ciaranm) if [[ "${MY_PN}" != "vim-core" ]] && ! version_is_at_least "6.3.086" ; then - inherit debug + IUSE="debug" +else + IUSE="" fi if [[ "${PN##*-}" == "cvs" ]] ; then @@ -43,9 +45,9 @@ fi EXPORT_FUNCTIONS pkg_setup src_unpack src_compile src_install src_test pkg_postinst pkg_postrm if version_is_at_least "6.4_beta" ; then - IUSE="nls acl" + IUSE="${IUSE} nls acl" else - IUSE="selinux nls acl" + IUSE="${IUSE} selinux nls acl" fi DEPEND="${DEPEND} nls? ( virtual/libintl )" |