From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id AEADA58973 for ; Tue, 2 Feb 2016 18:35:40 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 28E7321C110; Tue, 2 Feb 2016 18:35:34 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 6BB9E21C110 for ; Tue, 2 Feb 2016 18:35:32 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A6004340D7C for ; Tue, 2 Feb 2016 18:35:31 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CD4DECEC for ; Tue, 2 Feb 2016 18:35:27 +0000 (UTC) From: "Davide Pesavento" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Davide Pesavento" Message-ID: <1454438091.d98dedd5ee4a9ba038e84df521237631645f3762.pesa@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: eclass/ X-VCS-Repository: repo/gentoo X-VCS-Files: eclass/qt5-build.eclass X-VCS-Directories: eclass/ X-VCS-Committer: pesa X-VCS-Committer-Name: Davide Pesavento X-VCS-Revision: d98dedd5ee4a9ba038e84df521237631645f3762 X-VCS-Branch: master Date: Tue, 2 Feb 2016 18:35:27 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: c7611825-272b-4afc-bd45-7f1889513b4e X-Archives-Hash: 8248b96759f50347cadd2f5d06f7637e commit: d98dedd5ee4a9ba038e84df521237631645f3762 Author: Davide Pesavento gentoo org> AuthorDate: Sat Dec 26 21:51:32 2015 +0000 Commit: Davide Pesavento gentoo org> CommitDate: Tue Feb 2 18:34:51 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d98dedd5 qt5-build.eclass: replace deprecated virtualmake usage with virtx (cherry picked from proj/qt commit b545feebf73592d8068d7ac71264a786328e3e73) eclass/qt5-build.eclass | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/eclass/qt5-build.eclass b/eclass/qt5-build.eclass index 6534f81..8120c9f 100644 --- a/eclass/qt5-build.eclass +++ b/eclass/qt5-build.eclass @@ -246,14 +246,13 @@ qt5-build_src_test() { _EOF_ chmod +x "${testrunner}" - _qt5_test_runner() { + local testcmd=( qt5_foreach_target_subdir emake TESTRUNNER="'${testrunner}'" check - } - + ) if [[ ${VIRTUALX_REQUIRED} == test ]]; then - VIRTUALX_COMMAND="_qt5_test_runner" virtualmake + virtx "${testcmd[@]}" else - _qt5_test_runner + "${testcmd[@]}" fi }