aboutsummaryrefslogtreecommitdiffstats
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:50:36 +0000
commit30253358f5e76fb7b25be27198b4c125e0dbdf2c (patch)
treec85e2103f06d7e15f09dd9612a48ce2289954712 /meta/conf/layer.conf
parent8f72d9e4ecf495646af3c5cebe7f08ca01bbbb99 (diff)
downloadopenembedded-core-30253358f5e76fb7b25be27198b4c125e0dbdf2c.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. 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}/"
BBFILE_PRIORITY_normal = "5"
# Set a variable to get to the top of the metadata location
-COREBASE := ${@os.path.normpath("${LAYERDIR}/../")}
+COREBASE := '${@os.path.normpath("${LAYERDIR}/../")}'
# Add scripts to PATH
PATH := "${PATH}:${COREBASE}/scripts"