]> code.ossystems Code Review - openembedded-core.git/commit
scripts/oe-buildenv-internal: Fix regression in BB_ENV_EXTRAWHITE setting
authorOtavio Salvador <otavio@ossystems.com.br>
Mon, 4 Apr 2016 19:16:19 +0000 (16:16 -0300)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Tue, 5 Apr 2016 14:00:04 +0000 (15:00 +0100)
commit773e9ef9bacbf1e63fe758915d599d11762b8c1f
treebfb29a2f877d04a210e5e10da8f5f61713d1bf4c
parentd00b2250a6afebd7d1373c04b4006290f0cd4043
scripts/oe-buildenv-internal: Fix regression in BB_ENV_EXTRAWHITE setting

The commit OE-Core:ada4639 (oe-buildenv-internal: simplify derivation
of BB_ENV_EXTRAWHITE) changed the format of BB_ENV_EXTRAWHITE
variable to:

,----
| BB_ENV_EXTRAWHITE='ALL_PROXY
| BB_NO_NETWORK
| BB_NUMBER_THREADS
| ...
| '
`----

Instead of:

,----
| BB_ENV_EXTRAWHITE='ALL_PROXY BB_NO_NETWORK BB_NUMBER_THREADS...'
`----

The old format allow for external script parsing easier and there is
no need to change the format as it has no benefit from usage
perspective.

Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
scripts/oe-buildenv-internal