summaryrefslogtreecommitdiffstats
path: root/meta/classes/utils.bbclass
diff options
context:
space:
mode:
authorDarren Hart <dvhart@linux.intel.com>2011-05-25 16:05:17 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-05-27 16:55:16 +0100
commite94e86c2d7cc30943be8e46ee02270bfb732b485 (patch)
tree8db32101de3651c84a713ea83d682c4ef5f3aa36 /meta/classes/utils.bbclass
parent3a454781dffcb63d1c0970f4b441e57603a1b79e (diff)
downloadpoky-e94e86c2d7cc30943be8e46ee02270bfb732b485.tar.gz
utils.bbclass: make FILESEXTRAPATHS colon delimited
Fixes [YOCTO 1102] Path variables are typically : delimited. White space is allowed in paths, so is not a good choice for separating paths. Currently utils.bbclass performs the following: extrapaths = (bb.data.getVar("FILESEXTRAPATHS", d, True) or "").split() This splits FILESEXTRAPATHS on whitespace. It later splits overrides on : and reassembles them all together as : delimited. There is only one user of FILESEXTRAPATHS in oe-core (qt4-tools-native, which uses : anyway) and none in oe. Change the split() in utils.bbclass to split on : instead of whitespace. When splitting on a defined string (":") we must be careful to handle the empty string case which returns [''] instead of []. Tested building qt4-tools-native and core-image-minimal for surgarbay from meta-intel with a couple extra layers with FILESEXTRAPATHS modifications added. (From OE-Core rev: a6a892f520d22ef8020c98528d38ee08f6cda034) Signed-off-by: Darren Hart <dvhart@linux.intel.com> Cc: Phil Blundell <pb@pbcl.net> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/utils.bbclass')
-rw-r--r--meta/classes/utils.bbclass6
1 files changed, 4 insertions, 2 deletions
diff --git a/meta/classes/utils.bbclass b/meta/classes/utils.bbclass
index e103351e34..9930a24269 100644
--- a/meta/classes/utils.bbclass
+++ b/meta/classes/utils.bbclass
@@ -331,8 +331,10 @@ def explode_deps(s):
331 331
332def base_set_filespath(path, d): 332def base_set_filespath(path, d):
333 filespath = [] 333 filespath = []
334 extrapaths = (bb.data.getVar("FILESEXTRAPATHS", d, True) or "").split() 334 extrapaths = (bb.data.getVar("FILESEXTRAPATHS", d, True) or "")
335 path = extrapaths + path 335 # Don't prepend empty strings to the path list
336 if extrapaths != "":
337 path = extrapaths.split(":") + path
336 # The ":" ensures we have an 'empty' override 338 # The ":" ensures we have an 'empty' override
337 overrides = (bb.data.getVar("OVERRIDES", d, 1) or "") + ":" 339 overrides = (bb.data.getVar("OVERRIDES", d, 1) or "") + ":"
338 for p in path: 340 for p in path: