From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id A35B41382C5 for ; Sat, 2 Jan 2021 00:09:31 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D250CE0101; Sat, 2 Jan 2021 00:09:30 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B5389E0101 for ; Sat, 2 Jan 2021 00:09:30 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 76CD834072E for ; Sat, 2 Jan 2021 00:09:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B3077332 for ; Sat, 2 Jan 2021 00:09:27 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1609546129.6344af6fa47c15d14d227cbcff151f897a5fe232.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/bcg729/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/bcg729/bcg729-1.1.1.ebuild X-VCS-Directories: media-libs/bcg729/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 6344af6fa47c15d14d227cbcff151f897a5fe232 X-VCS-Branch: master Date: Sat, 2 Jan 2021 00:09: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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: eb21c36e-3910-4cbb-8123-6d6804888ebe X-Archives-Hash: 0bfd9b4328b985f68b5bdd4f97268cac commit: 6344af6fa47c15d14d227cbcff151f897a5fe232 Author: Sam James gentoo org> AuthorDate: Sat Jan 2 00:08:00 2021 +0000 Commit: Sam James gentoo org> CommitDate: Sat Jan 2 00:08:49 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6344af6f media-libs/bcg729: tidy src_test logic Copied from src_prepare (where I relied it'd be simpler in src_test), forgot to update the logic. Package-Manager: Portage-3.0.12-prefix, Repoman-3.0.2 Signed-off-by: Sam James gentoo.org> media-libs/bcg729/bcg729-1.1.1.ebuild | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/media-libs/bcg729/bcg729-1.1.1.ebuild b/media-libs/bcg729/bcg729-1.1.1.ebuild index bef0e798b64..ca7b404f630 100644 --- a/media-libs/bcg729/bcg729-1.1.1.ebuild +++ b/media-libs/bcg729/bcg729-1.1.1.ebuild @@ -39,10 +39,7 @@ src_configure() { src_test() { cd "${BUILD_DIR}/test" || die - - if use test ; then - mv "${WORKDIR}/patterns" "${BUILD_DIR}/test/" || die - fi + mv "${WORKDIR}/patterns" "${BUILD_DIR}/test/" || die ./testCampaignAll || die }