diff options
author | Fabio Berton <fabio.berton@ossystems.com.br> | 2016-02-18 14:59:09 -0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-02-19 15:33:02 +0000 |
commit | 54bfbcc6c92cb663aefa626e8febb8f853f72a93 (patch) | |
tree | 8d7d22685efb813ddf472d2dc910557b59ed4317 /meta/classes/waf.bbclass | |
parent | 51fc30472f5e3438e1e892e5a6dd3de4b80427a4 (diff) | |
download | poky-54bfbcc6c92cb663aefa626e8febb8f853f72a93.tar.gz |
waf.bbclass: Remove --disable-static from EXTRA_OECONF
As of commit OE-Core:773c9e18071d71454473dd81aff911104a2e9bc6
EXTRA_OECONF is appended with the option --disable-static on
DISABLE_STATIC variable and this cause the error:
waf: error: no such option: --disable-static
So, we need to disable this option.
(From OE-Core rev: cc100a291853c89efbf2c0c04bd9626a6546f4c7)
Signed-off-by: Fabio Berton <fabio.berton@ossystems.com.br>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/waf.bbclass')
-rw-r--r-- | meta/classes/waf.bbclass | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/meta/classes/waf.bbclass b/meta/classes/waf.bbclass index b3b5e94bdc..5e55833ca4 100644 --- a/meta/classes/waf.bbclass +++ b/meta/classes/waf.bbclass | |||
@@ -1,3 +1,6 @@ | |||
1 | # avoids build breaks when using no-static-libs.inc | ||
2 | DISABLE_STATIC = "" | ||
3 | |||
1 | def get_waf_parallel_make(d): | 4 | def get_waf_parallel_make(d): |
2 | pm = d.getVar('PARALLEL_MAKE', True) | 5 | pm = d.getVar('PARALLEL_MAKE', True) |
3 | if pm: | 6 | if pm: |