diff options
author | 2015-06-16 17:49:13 +0000 | |
---|---|---|
committer | 2015-06-16 17:49:13 +0000 | |
commit | 48af385c9200cb07b542fa8b2c41be9900d90c25 (patch) | |
tree | c0fe059be4913d523ea14aa3270d57038d4f3fdc /eclass | |
parent | Use use_if_iuse(). (diff) | |
download | gentoo-2-48af385c9200cb07b542fa8b2c41be9900d90c25.tar.gz gentoo-2-48af385c9200cb07b542fa8b2c41be9900d90c25.tar.bz2 gentoo-2-48af385c9200cb07b542fa8b2c41be9900d90c25.zip |
Drop QT4_VERBOSE_BUILD variable (always true now).
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/ChangeLog | 5 | ||||
-rw-r--r-- | eclass/qt4-build-multilib.eclass | 11 |
2 files changed, 7 insertions, 9 deletions
diff --git a/eclass/ChangeLog b/eclass/ChangeLog index 70f2756ba24c..fe3d48321e20 100644 --- a/eclass/ChangeLog +++ b/eclass/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for eclass directory # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1666 2015/06/16 17:47:24 pesa Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/ChangeLog,v 1.1667 2015/06/16 17:49:13 pesa Exp $ + + 16 Jun 2015; Davide Pesavento <pesa@gentoo.org> qt4-build-multilib.eclass: + Drop QT4_VERBOSE_BUILD variable (always true now). 16 Jun 2015; Davide Pesavento <pesa@gentoo.org> qmake-utils.eclass: Use use_if_iuse(). diff --git a/eclass/qt4-build-multilib.eclass b/eclass/qt4-build-multilib.eclass index 09da289337a9..bf4219bd48fa 100644 --- a/eclass/qt4-build-multilib.eclass +++ b/eclass/qt4-build-multilib.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2015 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/qt4-build-multilib.eclass,v 1.26 2015/06/13 23:05:46 pesa Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/qt4-build-multilib.eclass,v 1.27 2015/06/16 17:49:13 pesa Exp $ # @ECLASS: qt4-build-multilib.eclass # @MAINTAINER: @@ -88,11 +88,6 @@ multilib_src_install_all() { qt4_multilib_src_install_all; } # Space-separated list of directories that will be configured, # compiled, and installed. All paths must be relative to ${S}. -# @ECLASS-VARIABLE: QT4_VERBOSE_BUILD -# @DESCRIPTION: -# Set to false to reduce build output during compilation. -: ${QT4_VERBOSE_BUILD:=true} - # @ECLASS-VARIABLE: QCONFIG_ADD # @DEFAULT_UNSET # @DESCRIPTION: @@ -381,8 +376,8 @@ qt4_multilib_src_configure() { # disable rpath on non-prefix (bugs 380415 and 417169) $(usex prefix '' -no-rpath) - # verbosity of the configure and build phases - -verbose $(${QT4_VERBOSE_BUILD} || echo -silent) + # print verbose information about each configure test + -verbose # precompiled headers don't work on hardened, where the flag is masked $(in_iuse pch && qt_use pch || echo -no-pch) |