summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta-oe/recipes-support/open-vm-tools/open-vm-tools_10.1.5.bb7
1 files changed, 7 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/open-vm-tools/open-vm-tools_10.1.5.bb b/meta-oe/recipes-support/open-vm-tools/open-vm-tools_10.1.5.bb
index dc8faa4ead..81e8e96249 100644
--- a/meta-oe/recipes-support/open-vm-tools/open-vm-tools_10.1.5.bb
+++ b/meta-oe/recipes-support/open-vm-tools/open-vm-tools_10.1.5.bb
@@ -94,3 +94,10 @@ do_configure_prepend() {
94 export CUSTOM_DNET_NAME=dnet 94 export CUSTOM_DNET_NAME=dnet
95 export CUSTOM_DNET_LIBS=-L${STAGING_LIBDIR}/libdnet.so 95 export CUSTOM_DNET_LIBS=-L${STAGING_LIBDIR}/libdnet.so
96} 96}
97
98python() {
99 if 'networking-layer' not in d.getVar('BBFILE_COLLECTIONS').split() or \
100 'filesystems-layer' not in d.getVar('BBFILE_COLLECTIONS').split():
101 raise bb.parse.SkipRecipe('Requires meta-networking and meta-filesystems to be present.')
102}
103