diff options
Diffstat (limited to 'meta/classes/kernel-yocto.bbclass')
-rw-r--r-- | meta/classes/kernel-yocto.bbclass | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/classes/kernel-yocto.bbclass b/meta/classes/kernel-yocto.bbclass index d513ad2b63..fcc00e3d47 100644 --- a/meta/classes/kernel-yocto.bbclass +++ b/meta/classes/kernel-yocto.bbclass | |||
@@ -262,6 +262,8 @@ python do_kernel_configcheck() { | |||
262 | # set the default to 'meta'. Otherwise, kconf_check is not passed a valid | 262 | # set the default to 'meta'. Otherwise, kconf_check is not passed a valid |
263 | # meta-series for processing | 263 | # meta-series for processing |
264 | kmeta = d.getVar( "KMETA", True ) or "meta" | 264 | kmeta = d.getVar( "KMETA", True ) or "meta" |
265 | if not os.path.exists(kmeta): | ||
266 | kmeta = "." + kmeta | ||
265 | 267 | ||
266 | pathprefix = "export PATH=%s:%s; " % (d.getVar('PATH', True), "${S}/scripts/util/") | 268 | pathprefix = "export PATH=%s:%s; " % (d.getVar('PATH', True), "${S}/scripts/util/") |
267 | cmd = d.expand("cd ${S}; kconf_check -config- %s/meta-series ${S} ${B}" % kmeta) | 269 | cmd = d.expand("cd ${S}; kconf_check -config- %s/meta-series ${S} ${B}" % kmeta) |