diff options
Diffstat (limited to 'meta/classes')
| -rw-r--r-- | meta/classes/cml1.bbclass | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/meta/classes/cml1.bbclass b/meta/classes/cml1.bbclass index 9b9866f4c3..d319d66ab2 100644 --- a/meta/classes/cml1.bbclass +++ b/meta/classes/cml1.bbclass | |||
| @@ -40,6 +40,14 @@ python do_menuconfig() { | |||
| 40 | except OSError: | 40 | except OSError: |
| 41 | mtime = 0 | 41 | mtime = 0 |
| 42 | 42 | ||
| 43 | # setup native pkg-config variables (kconfig scripts call pkg-config directly, cannot generically be overriden to pkg-config-native) | ||
| 44 | d.setVar("PKG_CONFIG_DIR", "${STAGING_DIR_NATIVE}${libdir_native}/pkgconfig") | ||
| 45 | d.setVar("PKG_CONFIG_PATH", "${PKG_CONFIG_DIR}:${STAGING_DATADIR_NATIVE}/pkgconfig") | ||
| 46 | d.setVar("PKG_CONFIG_LIBDIR", "${PKG_CONFIG_DIR}") | ||
| 47 | d.setVarFlag("PKG_CONFIG_SYSROOT_DIR", "unexport", "1") | ||
| 48 | # ensure that environment variables are overwritten with this tasks 'd' values | ||
| 49 | d.appendVar("OE_TERMINAL_EXPORTS", " PKG_CONFIG_DIR PKG_CONFIG_PATH PKG_CONFIG_LIBDIR PKG_CONFIG_SYSROOT_DIR") | ||
| 50 | |||
| 43 | oe_terminal("sh -c \"make %s; if [ \\$? -ne 0 ]; then echo 'Command failed.'; printf 'Press any key to continue... '; read r; fi\"" % d.getVar('KCONFIG_CONFIG_COMMAND'), | 51 | oe_terminal("sh -c \"make %s; if [ \\$? -ne 0 ]; then echo 'Command failed.'; printf 'Press any key to continue... '; read r; fi\"" % d.getVar('KCONFIG_CONFIG_COMMAND'), |
| 44 | d.getVar('PN') + ' Configuration', d) | 52 | d.getVar('PN') + ' Configuration', d) |
| 45 | 53 | ||
