diff options
author | Amarnath Valluri <amarnath.valluri@intel.com> | 2017-06-13 09:52:38 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-06-14 10:18:22 +0100 |
commit | 4f33950156c50aab68cbdf80fe52345eea6fb76c (patch) | |
tree | 9666ecc4dfaba73771604ddcd066d547621388c4 /meta | |
parent | 1f6c14939c8daa5e09103789c3ff5031cc888d16 (diff) | |
download | openembedded-core-contrib-4f33950156c50aab68cbdf80fe52345eea6fb76c.tar.gz |
sed: changes to support merged /usr
Few of the perl scripts referring '#!/bin/sed' inside the script. But when
'usrmerge' feature is enabled this path would be /usr/bin/sed. So to satisfy
build dependency add '/bin/sed' to it's providers list.
Signed-off-by: Amarnath Valluri <amarnath.valluri@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-extended/sed/sed_4.2.2.bb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/meta/recipes-extended/sed/sed_4.2.2.bb b/meta/recipes-extended/sed/sed_4.2.2.bb index 5aa7d8a0797..e31bec28903 100644 --- a/meta/recipes-extended/sed/sed_4.2.2.bb +++ b/meta/recipes-extended/sed/sed_4.2.2.bb @@ -44,3 +44,4 @@ do_install_ptest() { oe_runmake -C ${TESTDIR} install-ptest BUILDDIR=${B} DESTDIR=${D}${PTEST_PATH} TESTDIR=${TESTDIR} } +RPROVIDES_${PN} += "${@bb.utils.contains('DISTRO_FEATURES', 'usrmerge', '/bin/sed', '', d)}" |