diff options
author | 2013-07-30 06:38:21 +0000 | |
---|---|---|
committer | 2013-07-30 06:38:21 +0000 | |
commit | afe4861534dfd1eb6c6bc6edd8697dd04a851bc9 (patch) | |
tree | f3cb75291f65d48e8bb14bbbe24cdbb66c6d0da4 /app-emulation | |
parent | previous mentioned fix to #445986 appears not to have gone through, repeat + ... (diff) | |
download | gentoo-2-afe4861534dfd1eb6c6bc6edd8697dd04a851bc9.tar.gz gentoo-2-afe4861534dfd1eb6c6bc6edd8697dd04a851bc9.tar.bz2 gentoo-2-afe4861534dfd1eb6c6bc6edd8697dd04a851bc9.zip |
verbosity level hard set in src_compile, fixes Bug #477678 by hasufell
(Portage version: 2.1.11.63/cvs/Linux x86_64, signed Manifest commit with key 0xB8072B0D)
Diffstat (limited to 'app-emulation')
-rw-r--r-- | app-emulation/xen-tools/ChangeLog | 5 | ||||
-rw-r--r-- | app-emulation/xen-tools/xen-tools-4.3.0.ebuild | 4 |
2 files changed, 6 insertions, 3 deletions
diff --git a/app-emulation/xen-tools/ChangeLog b/app-emulation/xen-tools/ChangeLog index 07f99c4b6271..ad1934fd8ded 100644 --- a/app-emulation/xen-tools/ChangeLog +++ b/app-emulation/xen-tools/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-emulation/xen-tools # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/xen-tools/ChangeLog,v 1.184 2013/07/30 06:34:52 idella4 Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/xen-tools/ChangeLog,v 1.185 2013/07/30 06:38:21 idella4 Exp $ + + 30 Jul 2013; Ian Delaney <idella4@gentoo.org> xen-tools-4.3.0.ebuild: + verbosity level hard set in src_compile, fixes Bug #477678 by hasufell 30 Jul 2013; Ian Delaney <idella4@gentoo.org> xen-tools-4.2.2-r4.ebuild, xen-tools-4.3.0.ebuild: diff --git a/app-emulation/xen-tools/xen-tools-4.3.0.ebuild b/app-emulation/xen-tools/xen-tools-4.3.0.ebuild index c9e9db4e29d8..e9fc1e3c52af 100644 --- a/app-emulation/xen-tools/xen-tools-4.3.0.ebuild +++ b/app-emulation/xen-tools/xen-tools-4.3.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/xen-tools/xen-tools-4.3.0.ebuild,v 1.15 2013/07/30 06:34:52 idella4 Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/xen-tools/xen-tools-4.3.0.ebuild,v 1.16 2013/07/30 06:38:21 idella4 Exp $ EAPI=5 @@ -242,7 +242,7 @@ src_compile() { unset LDFLAGS unset CFLAGS - emake CC="$(tc-getCC)" LD="$(tc-getLD)" AR="$(tc-getAR)" RANLIB="$(tc-getRANLIB)" -C tools ${myopt} + emake V=1 CC="$(tc-getCC)" LD="$(tc-getLD)" AR="$(tc-getAR)" RANLIB="$(tc-getRANLIB)" -C tools ${myopt} use doc && emake -C docs txt html emake -C docs man-pages |