From 36e918b8a80a0175b5d04cfdd04ab6d19aeef594 Mon Sep 17 00:00:00 2001 From: Richard Purdie Date: Sun, 26 Feb 2012 12:45:47 +0000 Subject: 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 --- meta/conf/layer.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta/conf/layer.conf') 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" -- cgit v1.2.3-54-g00ecf