diff options
-rw-r--r-- | meta/classes/kernel-yocto.bbclass | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/classes/kernel-yocto.bbclass b/meta/classes/kernel-yocto.bbclass index 79f82e3513..f78caaf23c 100644 --- a/meta/classes/kernel-yocto.bbclass +++ b/meta/classes/kernel-yocto.bbclass | |||
@@ -124,8 +124,8 @@ python do_kernel_configcheck() { | |||
124 | 124 | ||
125 | bb.plain("NOTE: validating kernel configuration") | 125 | bb.plain("NOTE: validating kernel configuration") |
126 | 126 | ||
127 | pathprefix = "export PATH=%s; " % d.getVar('PATH', True) | 127 | pathprefix = "export PATH=%s:%s; " % (d.getVar('PATH', True), "${S}/scripts/util/") |
128 | cmd = bb.data.expand("cd ${B}/..; ${S}/scripts/util/kconf_check -config- ${B} ${S} ${B} ${KBRANCH}",d ) | 128 | cmd = bb.data.expand("cd ${B}/..; kconf_check -config- ${B} ${S} ${B} ${KBRANCH}",d ) |
129 | ret, result = commands.getstatusoutput("%s%s" % (pathprefix, cmd)) | 129 | ret, result = commands.getstatusoutput("%s%s" % (pathprefix, cmd)) |
130 | 130 | ||
131 | bb.plain( "%s" % result ) | 131 | bb.plain( "%s" % result ) |