From a84661a44691f2cca5278dc7148cd3782af0a5ac Mon Sep 17 00:00:00 2001 From: Mathieu Arnold Date: Wed, 29 Nov 2017 08:55:47 +0000 Subject: [PATCH] Change an important bit from a tip to an important tag, and add an example of what not to do. Sponsored by: Absolight --- .../books/porters-handbook/makefiles/chapter.xml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/en_US.ISO8859-1/books/porters-handbook/makefiles/chapter.xml b/en_US.ISO8859-1/books/porters-handbook/makefiles/chapter.xml index 79362f24f3..3ac67400a8 100644 --- a/en_US.ISO8859-1/books/porters-handbook/makefiles/chapter.xml +++ b/en_US.ISO8859-1/books/porters-handbook/makefiles/chapter.xml @@ -6766,7 +6766,7 @@ BIN3_BUILD= yes BIN3_BUILD= no .endif - + Values containing whitespace must be enclosed in quotes: @@ -6780,7 +6780,15 @@ BIN3_BUILD= no intended there to be only one string, foo=bar baz. Quoting the value prevents whitespace from being used as a delimiter. - + + Also, do not add extra spaces + after the + var= sign + and before the value, it would also be split into two + strings. This will not work: + + OPT_VARS= foo= bar +