summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/classes-global/insane.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes-global/insane.bbclass b/meta/classes-global/insane.bbclass
index 828f618cda..9909526f51 100644
--- a/meta/classes-global/insane.bbclass
+++ b/meta/classes-global/insane.bbclass
@@ -1611,7 +1611,7 @@ python () {
1611 for k in ['RDEPENDS', 'RPROVIDES']: 1611 for k in ['RDEPENDS', 'RPROVIDES']:
1612 for var in bb.utils.explode_deps(d.getVar(k + ':' + pn) or ""): 1612 for var in bb.utils.explode_deps(d.getVar(k + ':' + pn) or ""):
1613 if var.startswith("virtual/"): 1613 if var.startswith("virtual/"):
1614 bb.warn("%s is set to %s, the substring 'virtual/' holds no meaning in this context. It is suggested to use the 'virtual-' instead." % (k, var)) 1614 bb.warn("%s is set to %s but the substring 'virtual/' holds no meaning in this context. It only works for build time dependencies, not runtime ones. It is suggested to use 'VIRTUAL-RUNTIME_' variables instead." % (k, var))
1615 1615
1616 issues = [] 1616 issues = []
1617 if (d.getVar('PACKAGES') or "").split(): 1617 if (d.getVar('PACKAGES') or "").split():