From 1eb75407ae192a91667dd5527c51f3c8b27d770b Mon Sep 17 00:00:00 2001 From: Scott Rifenbark Date: Mon, 14 Apr 2014 17:56:23 -0700 Subject: bitbake: bitbake-user-manual-metadata.xml: Added section on pathname syntax Added a brief subsection to the "Basic Syntax" section that describes the issue using the tilde character (~) when providing a pathname as part of a statement. BitBake does not expand this character like the shell does. We recommend to not use it in pathnames. (Bitbake rev: a98ee7b67127a18bb8a81b1e7840c386134812c6) Signed-off-by: Scott Rifenbark Signed-off-by: Richard Purdie --- .../bitbake-user-manual-metadata.xml | 23 ++++++++++++++++++++++ 1 file changed, 23 insertions(+) (limited to 'bitbake') diff --git a/bitbake/doc/bitbake-user-manual/bitbake-user-manual-metadata.xml b/bitbake/doc/bitbake-user-manual/bitbake-user-manual-metadata.xml index 5304e40ce7..a9f5072128 100644 --- a/bitbake/doc/bitbake-user-manual/bitbake-user-manual-metadata.xml +++ b/bitbake/doc/bitbake-user-manual/bitbake-user-manual-metadata.xml @@ -301,6 +301,29 @@ variable becoming the current date. + +
+ Providing Pathnames + + + When specifying pathnames for use with BitBake, + do not use the tilde ("~") character as a shortcut + for your home directory. + Doing so might cause BitBake to not recognize the + path since BitBake does not expand this character in + the same way a shell would. + + + + Instead, provide a fuller path as the following + example illustrates: + + BBLAYERS ?= " \ + /home/scott-lenovo/LayerA \ + " + + +
-- cgit v1.2.3-54-g00ecf