From 9b5aedc3bcadb8dc2f1133b5e75c21ef4f010a0b Mon Sep 17 00:00:00 2001 From: Scott Rifenbark Date: Wed, 22 Feb 2012 11:33:41 -0600 Subject: [PATCH] documentation/dev-manual/dev-manual-common-tasks.xml: S variable edits More edits to the "Finding the Temporary Source Code" section as pointed out by Paul Eggleton. (From yocto-docs rev: 2987abe413687e216c4fe38d1db855409a595dab) Signed-off-by: Scott Rifenbark Signed-off-by: Richard Purdie --- .../dev-manual/dev-manual-common-tasks.xml | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/documentation/dev-manual/dev-manual-common-tasks.xml b/documentation/dev-manual/dev-manual-common-tasks.xml index c675a373bf..893c9e55e4 100644 --- a/documentation/dev-manual/dev-manual-common-tasks.xml +++ b/documentation/dev-manual/dev-manual-common-tasks.xml @@ -775,11 +775,18 @@ so that there are some definite steps on how to do this. I need more detail her defined by the S variable. Below is the default value for the S variable as defined in the - /conf/local.conf configuration file in the Yocto - Project's Build Directory: + meta/conf/bitbake.conf configuration file in the + Yocto Project Files: - S = ${WORKDIR}/${PN}-${PV} + S = ${WORKDIR}/${BP} + + BP represents the "Base Package", which is the base package + name and the package version: + + BP = ${BPN}-${PV} + +