diff options
author | Bruce Ashfield <bruce.ashfield@windriver.com> | 2012-10-11 11:49:33 -0400 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-11-19 16:44:53 +0000 |
commit | 5999ccebc7b071737f82709467e2a2ec152240f6 (patch) | |
tree | 6374e865f07f878da35547562a3c5795e2b5c9d2 /meta/recipes-kernel/kern-tools | |
parent | 7ad1c853e252bea024043dc79d89405178393c09 (diff) | |
download | openembedded-core-5999ccebc7b071737f82709467e2a2ec152240f6.tar.gz openembedded-core-5999ccebc7b071737f82709467e2a2ec152240f6.tar.bz2 openembedded-core-5999ccebc7b071737f82709467e2a2ec152240f6.zip |
kern-tools: kconf_check: fix find warning
Bumping the kern-tools SRCREV to pickup the following change:
[
kconf_check: fix find warning
When searching for all available Kconfig files, kconf_check was using
$meta_dir instead of $META_DIR. This resulted in a truncated path and
the following warning:
find: warning: -path $oe-path/linux/ will not match anything because it ends with /.
Using the proper variable removes the warning and make sure that we
do actually search all relevant directories.
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
]
[YOCTO #3226]
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
Diffstat (limited to 'meta/recipes-kernel/kern-tools')
-rw-r--r-- | meta/recipes-kernel/kern-tools/kern-tools-native_git.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-kernel/kern-tools/kern-tools-native_git.bb b/meta/recipes-kernel/kern-tools/kern-tools-native_git.bb index 1381fd1736..ce94885fba 100644 --- a/meta/recipes-kernel/kern-tools/kern-tools-native_git.bb +++ b/meta/recipes-kernel/kern-tools/kern-tools-native_git.bb @@ -4,7 +4,7 @@ LIC_FILES_CHKSUM = "file://git/tools/kgit;beginline=5;endline=9;md5=d8d1d729a70c DEPENDS = "git-native guilt-native" -SRCREV = "a04138a02644eada0d012196e5ac3db4f516114d" +SRCREV = "a802ee9c8d9334c0f7932dfd40d45599addb7c90" PR = "r12" PV = "0.1+git${SRCPV}" |