summaryrefslogtreecommitdiffstats
path: root/meta/conf/layer.conf
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2012-02-26 12:45:47 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-02-26 12:52:12 +0000
commit36e918b8a80a0175b5d04cfdd04ab6d19aeef594 (patch)
tree367bbcd3c5cfb1252891ed795d84ab62f2342053 /meta/conf/layer.conf
parent21f2c0b5cd9a53aba277aaaf27a6a5d562b2405f (diff)
downloadpoky-36e918b8a80a0175b5d04cfdd04ab6d19aeef594.tar.gz
Quoting fixes
We have various variables which are either not quoted at all or are half quoted. This patch fixes the bad exmaples so everything is consistent. (From OE-Core rev: 30253358f5e76fb7b25be27198b4c125e0dbdf2c) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/conf/layer.conf')
-rw-r--r--meta/conf/layer.conf2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/conf/layer.conf b/meta/conf/layer.conf
index 93c087a047..76ae58ceb7 100644
--- a/meta/conf/layer.conf
+++ b/meta/conf/layer.conf
@@ -9,7 +9,7 @@ BBFILE_PATTERN_normal := "^${LAYERDIR}/"
9BBFILE_PRIORITY_normal = "5" 9BBFILE_PRIORITY_normal = "5"
10 10
11# Set a variable to get to the top of the metadata location 11# Set a variable to get to the top of the metadata location
12COREBASE := ${@os.path.normpath("${LAYERDIR}/../")} 12COREBASE := '${@os.path.normpath("${LAYERDIR}/../")}'
13 13
14# Add scripts to PATH 14# Add scripts to PATH
15PATH := "${PATH}:${COREBASE}/scripts" 15PATH := "${PATH}:${COREBASE}/scripts"