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 CE998138332 for ; Sat, 12 May 2018 15:55:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 06D59E0B97; Sat, 12 May 2018 15:55:38 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 CF371E0B97 for ; Sat, 12 May 2018 15:55:37 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 B96AE335C72 for ; Sat, 12 May 2018 15:55:35 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D5F09292 for ; Sat, 12 May 2018 15:55:32 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1526140527.c78ccc382ed2c7902371f44c5f0cfe179b74676a.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/fuse/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-emulation/fuse/fuse-1.5.3.ebuild X-VCS-Directories: app-emulation/fuse/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: c78ccc382ed2c7902371f44c5f0cfe179b74676a X-VCS-Branch: master Date: Sat, 12 May 2018 15:55:32 +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: 9180cae1-3740-42d5-915e-1ec7b8d0d5f6 X-Archives-Hash: c551f7ef71c01be3d4997cf699a49ed7 commit: c78ccc382ed2c7902371f44c5f0cfe179b74676a Author: Michał Górny gentoo org> AuthorDate: Sat May 12 15:52:52 2018 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat May 12 15:55:27 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c78ccc38 app-emulation/fuse: Fix src_test to use 'test' target The upstream Makefile is apparently using a custom 'test' target to run tests, while the 'check' target is a no-op. Update the ebuild accordingly. app-emulation/fuse/fuse-1.5.3.ebuild | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app-emulation/fuse/fuse-1.5.3.ebuild b/app-emulation/fuse/fuse-1.5.3.ebuild index 3bccba054d3..913346a242f 100644 --- a/app-emulation/fuse/fuse-1.5.3.ebuild +++ b/app-emulation/fuse/fuse-1.5.3.ebuild @@ -62,3 +62,7 @@ src_configure() { econf "${myconf[@]}" } + +src_test() { + emake test +}