commit: b11a2969d70e10f2d44c6d6f264a6d8df19fcb9c
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Dec 10 16:34:09 2016 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> 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"
}