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 6621E1395E2 for ; Sat, 10 Dec 2016 21:25:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AD873E0B70; Sat, 10 Dec 2016 21:25:15 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 8A882E0B62 for ; Sat, 10 Dec 2016 21:25:15 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 59021340EDA for ; Sat, 10 Dec 2016 21:25:14 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AF4EC24A4 for ; Sat, 10 Dec 2016 21:25:12 +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: <1481405108.b11a2969d70e10f2d44c6d6f264a6d8df19fcb9c.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/opencv/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/opencv/opencv-3.1.0-r7.ebuild X-VCS-Directories: media-libs/opencv/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: b11a2969d70e10f2d44c6d6f264a6d8df19fcb9c X-VCS-Branch: master Date: Sat, 10 Dec 2016 21:25:12 +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: 776ddfba-8c2f-4aad-89ff-5b9f1f557140 X-Archives-Hash: 81cb831cab789f5c29ab08ffd9055dee commit: b11a2969d70e10f2d44c6d6f264a6d8df19fcb9c Author: Michał Górny gentoo org> AuthorDate: Sat Dec 10 16:34:09 2016 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Dec 10 21:25:08 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b11a2969 media-libs/opencv: Kill redundant 'emake clean' - fix ninja, #602232 Kill the call to 'emake clean' for Python build directory which obviously does not work when Ninja is used instead of Makefiles. It is completely redundant since it is followed by 'rm -rf' of the whole directory (tested with Makefiles and Ninja). media-libs/opencv/opencv-3.1.0-r7.ebuild | 1 - 1 file changed, 1 deletion(-) diff --git a/media-libs/opencv/opencv-3.1.0-r7.ebuild b/media-libs/opencv/opencv-3.1.0-r7.ebuild index f8747c5..26371e1 100644 --- a/media-libs/opencv/opencv-3.1.0-r7.ebuild +++ b/media-libs/opencv/opencv-3.1.0-r7.ebuild @@ -279,7 +279,6 @@ python_module_compile() { # Remove compiled binary so new version compiles # Avoid conflicts with new module builds as build system doesn't # really support it. - emake -C modules/python2 clean rm -rf modules/python2 || die "rm failed" }