diff options
author | 2016-12-10 17:34:09 +0100 | |
---|---|---|
committer | 2016-12-10 22:25:08 +0100 | |
commit | b11a2969d70e10f2d44c6d6f264a6d8df19fcb9c (patch) | |
tree | 09e50c3c9c96fd3e1ace8fde282b8a4bd5e7c20b /media-libs/opencv | |
parent | media-libs/opencv: Kill unnecessary Gentoo hack-patch for Python (diff) | |
download | gentoo-b11a2969d70e10f2d44c6d6f264a6d8df19fcb9c.tar.gz gentoo-b11a2969d70e10f2d44c6d6f264a6d8df19fcb9c.tar.bz2 gentoo-b11a2969d70e10f2d44c6d6f264a6d8df19fcb9c.zip |
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).
Diffstat (limited to 'media-libs/opencv')
-rw-r--r-- | media-libs/opencv/opencv-3.1.0-r7.ebuild | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/media-libs/opencv/opencv-3.1.0-r7.ebuild b/media-libs/opencv/opencv-3.1.0-r7.ebuild index f8747c57aac9..26371e1a6ed5 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" } |