diff options
author | Davide Pesavento <pesa@gentoo.org> | 2012-02-09 22:58:36 +0000 |
---|---|---|
committer | Davide Pesavento <pesa@gentoo.org> | 2012-02-09 22:58:36 +0000 |
commit | 525f4c156a9ef154af82e26ea793dec8668757d5 (patch) | |
tree | 79baefba178538b506114743ffe05bfaebccda23 /eclass/qt4-build.eclass | |
parent | Add myself as maintaner, remove solar (with his permission) (diff) | |
download | historical-525f4c156a9ef154af82e26ea793dec8668757d5.tar.gz historical-525f4c156a9ef154af82e26ea793dec8668757d5.tar.bz2 historical-525f4c156a9ef154af82e26ea793dec8668757d5.zip |
Make src_test() a noop for qt-multimedia (bug #332299).
Diffstat (limited to 'eclass/qt4-build.eclass')
-rw-r--r-- | eclass/qt4-build.eclass | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/eclass/qt4-build.eclass b/eclass/qt4-build.eclass index 45155c230cc8..120ebc20a5f7 100644 --- a/eclass/qt4-build.eclass +++ b/eclass/qt4-build.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/qt4-build.eclass,v 1.117 2012/02/09 22:07:34 hwoarang Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/qt4-build.eclass,v 1.118 2012/02/09 22:58:36 pesa Exp $ # @ECLASS: qt4-build.eclass # @MAINTAINER: @@ -382,6 +382,9 @@ qt4-build_src_compile() { # @DESCRIPTION: # Runs tests only in target directories. qt4-build_src_test() { + # QtMultimedia does not have any test suite (bug #332299) + [[ ${PN} == "qt-multimedia" ]] && return + for dir in ${QT4_TARGET_DIRECTORIES}; do emake -j1 check -C ${dir} done |