From a75a9fde5f71ae610c4aaedb5ae0a9b587d26b4d Mon Sep 17 00:00:00 2001 From: Paul Eggleton Date: Tue, 9 Apr 2013 10:39:21 +0100 Subject: [PATCH] ref-manual/ref-variables: ensure values are quoted Just a couple of examples that didn't use quotes around the value, which is mandatory, so correct these. (From yocto-docs rev: 2903ce2b232536c566bd8c29a8772823b44c19df) Signed-off-by: Paul Eggleton Signed-off-by: Richard Purdie --- documentation/ref-manual/ref-variables.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/documentation/ref-manual/ref-variables.xml b/documentation/ref-manual/ref-variables.xml index 5b56765cdd..a3f0c1b87a 100644 --- a/documentation/ref-manual/ref-variables.xml +++ b/documentation/ref-manual/ref-variables.xml @@ -100,7 +100,7 @@ By default, this directory is the same as the S directory: - B = ${WORKDIR}/${BPN}/{PV}/ + B = "${WORKDIR}/${BPN}/{PV}/" You can separate the (S) directory and the directory pointed to by the B variable. @@ -3277,7 +3277,7 @@ recipes-graphics/xorg-font/font-alias_1.0.3.bb:PR = "${INC_PR}.3" files when building a particular package. It is typically set as follows: - T = ${WORKDIR}/temp + T = "${WORKDIR}/temp" The WORKDIR is the directory into which BitBake unpacks and builds the package.