diff options
author | 2006-09-03 18:08:45 +0000 | |
---|---|---|
committer | 2006-09-03 18:08:45 +0000 | |
commit | 0744f256b677abec81a7ab0881a2148511766aa4 (patch) | |
tree | feaccf4f327af320dcfb5e8e4788a392dcae4ae4 /eclass/gnustep.eclass | |
parent | block base64 since we now provide it #146149 (diff) | |
download | gentoo-2-0744f256b677abec81a7ab0881a2148511766aa4.tar.gz gentoo-2-0744f256b677abec81a7ab0881a2148511766aa4.tar.bz2 gentoo-2-0744f256b677abec81a7ab0881a2148511766aa4.zip |
Get rid of "verbose" USE-flag that is only controlling compile-time
output. Default to verbose=yes (= more "noisy" output) because within
Gentoo we're more used to heavy loads of compile messages.
Diffstat (limited to 'eclass/gnustep.eclass')
-rw-r--r-- | eclass/gnustep.eclass | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/eclass/gnustep.eclass b/eclass/gnustep.eclass index 19040109ec76..8d39f59fd5c4 100644 --- a/eclass/gnustep.eclass +++ b/eclass/gnustep.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/gnustep.eclass,v 1.34 2006/06/25 14:46:52 grobian Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/gnustep.eclass,v 1.35 2006/09/03 18:08:45 grobian Exp $ inherit gnustep-funcs eutils flag-o-matic @@ -11,9 +11,8 @@ DESCRIPTION="EClass designed to facilitate building GNUstep Apps, Frameworks, an # ##### All GNUstep applications / libs get these # "debug" - enable code for debugging; also nostrip # "profile" - enable code for profiling; also nostrip -# "verbose" - enable "normal / noisy" compiling from eclass # "doc" - build and install documentation, if available -IUSE="debug profile verbose doc" +IUSE="debug profile doc" if use debug || use profile; then RESTRICT="nostrip" fi |