While baselib = 'lib64', there is a installed-vs-shipped QA WARNING ... WARNING: QA Issue: opencv: Files/directories were installed but not shipped in any package: /usr/lib64/site-packages/cv2/load_config_py2.py /usr/lib64/site-packages/cv2/config.py ...
Drop unnecessary LIB_SUFFIX setting to fix the issue. Signed-off-by: Hongxu Jia <[email protected]> --- meta-oe/recipes-support/opencv/opencv_3.4.5.bb | 2 -- 1 file changed, 2 deletions(-) diff --git a/meta-oe/recipes-support/opencv/opencv_3.4.5.bb b/meta-oe/recipes-support/opencv/opencv_3.4.5.bb index d299c59..fa6e06a 100644 --- a/meta-oe/recipes-support/opencv/opencv_3.4.5.bb +++ b/meta-oe/recipes-support/opencv/opencv_3.4.5.bb @@ -74,8 +74,6 @@ EXTRA_OECMAKE = "-DOPENCV_EXTRA_MODULES_PATH=${WORKDIR}/contrib/modules \ ${@bb.utils.contains("TARGET_CC_ARCH", "-msse3", "-DENABLE_SSE=1 -DENABLE_SSE2=1 -DENABLE_SSE3=1 -DENABLE_SSSE3=1", "", d)} \ ${@bb.utils.contains("TARGET_CC_ARCH", "-msse4.1", "-DENABLE_SSE=1 -DENABLE_SSE2=1 -DENABLE_SSE3=1 -DENABLE_SSSE3=1 -DENABLE_SSE41=1", "", d)} \ ${@bb.utils.contains("TARGET_CC_ARCH", "-msse4.2", "-DENABLE_SSE=1 -DENABLE_SSE2=1 -DENABLE_SSE3=1 -DENABLE_SSSE3=1 -DENABLE_SSE41=1 -DENABLE_SSE42=1", "", d)} \ - ${@oe.utils.conditional("libdir", "/usr/lib64", "-DLIB_SUFFIX=64", "", d)} \ - ${@oe.utils.conditional("libdir", "/usr/lib32", "-DLIB_SUFFIX=32", "", d)} \ " EXTRA_OECMAKE_append_x86 = " -DX86=ON" -- 2.7.4 -- _______________________________________________ Openembedded-devel mailing list [email protected] http://lists.openembedded.org/mailman/listinfo/openembedded-devel
