diff options
Diffstat (limited to 'meta')
-rw-r--r-- | meta/classes/base.bbclass | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/meta/classes/base.bbclass b/meta/classes/base.bbclass index dafded3e42..4662d3bf64 100644 --- a/meta/classes/base.bbclass +++ b/meta/classes/base.bbclass | |||
@@ -469,7 +469,10 @@ python () { | |||
469 | extraconf.append(items[1]) | 469 | extraconf.append(items[1]) |
470 | appendVar('DEPENDS', extradeps) | 470 | appendVar('DEPENDS', extradeps) |
471 | appendVar('RDEPENDS_${PN}', extrardeps) | 471 | appendVar('RDEPENDS_${PN}', extrardeps) |
472 | appendVar('EXTRA_OECONF', extraconf) | 472 | if bb.data.inherits_class('cmake', d): |
473 | appendVar('EXTRA_OECMAKE', extraconf) | ||
474 | else: | ||
475 | appendVar('EXTRA_OECONF', extraconf) | ||
473 | 476 | ||
474 | # If PRINC is set, try and increase the PR value by the amount specified | 477 | # If PRINC is set, try and increase the PR value by the amount specified |
475 | princ = d.getVar('PRINC', True) | 478 | princ = d.getVar('PRINC', True) |