summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAnuj Mittal <anuj.mittal@intel.com>2020-01-30 13:34:31 +0800
committerAnuj Mittal <anuj.mittal@intel.com>2020-03-04 10:39:58 +0800
commitfaced19dda5332cce9164903b250db5aa9b86259 (patch)
tree562df27e445bb3685b3db7dd3e5fbb23c3db5076
parent92789dcba9d8478c87cc71a957e80a5221a6b562 (diff)
downloadmeta-intel-faced19dda5332cce9164903b250db5aa9b86259.tar.gz
dldt-inference-engine: fix DEPENDS
Fix the dependency to be added when ptests are not enabled. Fixes: | ERROR: Nothing PROVIDES '0' (but /meta-intel/dynamic-layers/openembedded-layer/recipes-support/opencv/dldt-inference-engine_2019r3.1.bb DEPENDS on or otherwise requires it) | ERROR: Required build target 'dldt-inference-engine' has no buildable providers. | Missing or unbuildable dependency chain was: ['dldt-inference-engine', '0'] (cherry picked from commit 369d0a0dc3666a757fb0a0069090287f8c023f75) Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
-rw-r--r--dynamic-layers/openembedded-layer/recipes-support/opencv/dldt-inference-engine_2019r3.1.bb2
1 files changed, 1 insertions, 1 deletions
diff --git a/dynamic-layers/openembedded-layer/recipes-support/opencv/dldt-inference-engine_2019r3.1.bb b/dynamic-layers/openembedded-layer/recipes-support/opencv/dldt-inference-engine_2019r3.1.bb
index b9767517..1074cf6d 100644
--- a/dynamic-layers/openembedded-layer/recipes-support/opencv/dldt-inference-engine_2019r3.1.bb
+++ b/dynamic-layers/openembedded-layer/recipes-support/opencv/dldt-inference-engine_2019r3.1.bb
@@ -61,7 +61,7 @@ DEPENDS += "libusb1 \
61 pugixml \ 61 pugixml \
62 ngraph \ 62 ngraph \
63 tbb \ 63 tbb \
64 ${@bb.utils.contains('PTEST_ENABLED', '1', 'gflags', '0', d)} \ 64 ${@bb.utils.contains('PTEST_ENABLED', '1', 'gflags', '', d)} \
65 " 65 "
66 66
67COMPATIBLE_HOST = '(x86_64).*-linux' 67COMPATIBLE_HOST = '(x86_64).*-linux'