diff options
author | Armando Di Cianno <fafhrd@gentoo.org> | 2005-06-22 20:51:06 +0000 |
---|---|---|
committer | Armando Di Cianno <fafhrd@gentoo.org> | 2005-06-22 20:51:06 +0000 |
commit | ab25e6e381b3a6ef0b0690c7bdaf44f9868c9431 (patch) | |
tree | 08f142e90fa70bf6d258db172f4247ec1d21361f /eclass/gnustep-funcs.eclass | |
parent | Added 'verbose' use flag to use.desc (to allow an increase in verbosity for b... (diff) | |
download | historical-ab25e6e381b3a6ef0b0690c7bdaf44f9868c9431.tar.gz historical-ab25e6e381b3a6ef0b0690c7bdaf44f9868c9431.tar.bz2 historical-ab25e6e381b3a6ef0b0690c7bdaf44f9868c9431.zip |
Added use of 'verbose' use flag to optionally not hide compilation output
Diffstat (limited to 'eclass/gnustep-funcs.eclass')
-rw-r--r-- | eclass/gnustep-funcs.eclass | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/eclass/gnustep-funcs.eclass b/eclass/gnustep-funcs.eclass index 5cba500d4719..fba849af7db0 100644 --- a/eclass/gnustep-funcs.eclass +++ b/eclass/gnustep-funcs.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/gnustep-funcs.eclass,v 1.4 2005/03/18 02:47:00 fafhrd Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/gnustep-funcs.eclass,v 1.5 2005/06/22 20:51:06 fafhrd Exp $ inherit toolchain-funcs eutils @@ -160,6 +160,9 @@ egnustep_make() { if use profile; then gs_make_opts="${gs_make_opts} profile=yes" fi + if use verbose; then + gs_make_opts="${gs_make_opts} messages=yes" + fi eval emake ${__GS_MAKE_EVAL} ${gs_make_opts} all || die "package make failed" else die "no Makefile found" @@ -195,6 +198,9 @@ egnustep_install() { if use profile; then gs_make_opts="${gs_make_opts} profile=yes" fi + if use verbose; then + gs_make_opts="${gs_make_opts} messages=yes" + fi eval emake ${__GS_MAKE_EVAL} ${gs_make_opts} install || die "package install failed" else die "no Makefile found" @@ -215,6 +221,9 @@ egnustep_doc() { if use profile; then gs_make_opts="${gs_make_opts} profile=yes" fi + if use verbose; then + gs_make_opts="${gs_make_opts} messages=yes" + fi eval emake ${__GS_MAKE_EVAL} ${gs_make_opts} all || die "doc make failed" eval emake ${__GS_MAKE_EVAL} ${gs_make_opts} install || die "doc install failed" #XXX: I have no idea why this is called by ebuilds that don't have 'doc' in the |