summaryrefslogtreecommitdiffstats
path: root/meta
diff options
context:
space:
mode:
authorRichard Purdie <rpurdie@linux.intel.com>2009-01-05 15:59:22 +0000
committerRichard Purdie <rpurdie@linux.intel.com>2009-01-05 15:59:22 +0000
commite247f22c27b5ffae8d7e6ca19dedf39c6946f9e4 (patch)
treead0fa4cfed62a311e90b069a7194b62a38e7f629 /meta
parentfb9196ddcf88efdc2589eccbff062a69ae659007 (diff)
downloadpoky-e247f22c27b5ffae8d7e6ca19dedf39c6946f9e4.tar.gz
sdk.bbclass: Don't special case virtual/ dependencies as this breaks things like libx11
Diffstat (limited to 'meta')
-rw-r--r--meta/classes/sdk.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/sdk.bbclass b/meta/classes/sdk.bbclass
index dd62e2a028..b5ec9efd08 100644
--- a/meta/classes/sdk.bbclass
+++ b/meta/classes/sdk.bbclass
@@ -80,7 +80,7 @@ python __anonymous () {
80 else: 80 else:
81 autoextend = False 81 autoextend = False
82 for dep in deps: 82 for dep in deps:
83 if dep.endswith("-native") or dep.endswith("-cross") or dep.startswith("virtual/"): 83 if dep.endswith("-native") or dep.endswith("-cross"):
84 continue 84 continue
85 if not dep.endswith("-sdk"): 85 if not dep.endswith("-sdk"):
86 if autoextend: 86 if autoextend: