diff options
author | Hongxu Jia <hongxu.jia@windriver.com> | 2014-10-11 16:59:22 +0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-10-18 16:14:03 +0200 |
commit | 19b4afdf6abc4ce5f31104280afa39a3df19f44f (patch) | |
tree | 7cb03f1da7a4c2a0412c47d69ba84b2ba021274f | |
parent | 401cec3bbf7cac4f801502658ebc7e4446da1ae1 (diff) | |
download | tizen-distro-19b4afdf6abc4ce5f31104280afa39a3df19f44f.tar.gz tizen-distro-19b4afdf6abc4ce5f31104280afa39a3df19f44f.tar.bz2 tizen-distro-19b4afdf6abc4ce5f31104280afa39a3df19f44f.zip |
file: add wrapper to nativesdk-file
"file" command in exported SDK doesn't work:
...
$ file sysroots/
file: could not find any valid magic files!
...
In oe-core commit 68d548cbae729eaea8ce1403dc95ff63c4a7375c,
it added wrapper to file-native. Do the same thing for
nativesdk-file.
(From OE-Core rev: 69a3ab38d1c725c2b575065739cae4a3b45015a2)
Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-devtools/file/file_5.18.bb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/meta/recipes-devtools/file/file_5.18.bb b/meta/recipes-devtools/file/file_5.18.bb index f2f8d032e2..9068b9314a 100644 --- a/meta/recipes-devtools/file/file_5.18.bb +++ b/meta/recipes-devtools/file/file_5.18.bb @@ -27,4 +27,9 @@ do_install_append_class-native() { --magic-file ${datadir}/misc/magic.mgc } +do_install_append_class-nativesdk() { + create_cmdline_wrapper ${D}/${bindir}/file \ + --magic-file ${datadir}/misc/magic.mgc +} + BBCLASSEXTEND = "native nativesdk" |