diff options
author | Olof Johansson <olof.johansson@axis.com> | 2013-09-04 08:30:29 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-09-04 14:03:54 +0100 |
commit | 2ca72d35e839a0fa24d33bf75343f187792f4e2c (patch) | |
tree | 7779f7b6e6c5977c8add75af4b7c928d3d3d297c /meta | |
parent | 8c272641ef3e8410f331ca4133d28dea8f36e4f4 (diff) | |
download | openembedded-core-2ca72d35e839a0fa24d33bf75343f187792f4e2c.tar.gz openembedded-core-2ca72d35e839a0fa24d33bf75343f187792f4e2c.tar.bz2 openembedded-core-2ca72d35e839a0fa24d33bf75343f187792f4e2c.zip |
flex: Only use create_wrapper for native and nativesdk
The create_wrapper functions of utils.bbclass cause implicit
dependencies on bash, which may not be suitable for deployment on
target. Besides, the wrapper doesn't seem to be necessary on target.
Signed-off-by: Olof Johansson <olofjn@axis.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-devtools/flex/flex.inc | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/meta/recipes-devtools/flex/flex.inc b/meta/recipes-devtools/flex/flex.inc index 517db1626a..43f1dda01c 100644 --- a/meta/recipes-devtools/flex/flex.inc +++ b/meta/recipes-devtools/flex/flex.inc @@ -13,6 +13,10 @@ inherit autotools gettext M4 = "${bindir}/m4" M4_class-native = "${STAGING_BINDIR_NATIVE}/m4" -do_install_append() { +do_install_append_class-native() { + create_wrapper ${D}/${bindir}/flex M4=${M4} +} + +do_install_append_class-nativesdk() { create_wrapper ${D}/${bindir}/flex M4=${M4} } |