diff options
| -rw-r--r-- | meta/classes/distutils.bbclass | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/meta/classes/distutils.bbclass b/meta/classes/distutils.bbclass index a0e1f502fd..8c3a979322 100644 --- a/meta/classes/distutils.bbclass +++ b/meta/classes/distutils.bbclass | |||
| @@ -47,14 +47,18 @@ distutils_do_install() { | |||
| 47 | 47 | ||
| 48 | if test -e ${D}${bindir} ; then | 48 | if test -e ${D}${bindir} ; then |
| 49 | for i in ${D}${bindir}/* ; do \ | 49 | for i in ${D}${bindir}/* ; do \ |
| 50 | sed -i -e s:${STAGING_BINDIR_NATIVE}/python-native/python:${bindir}/env\ python:g $i | 50 | if [ ${PN} != "${BPN}-native" ]; then |
| 51 | sed -i -e s:${STAGING_BINDIR_NATIVE}/python-native/python:${bindir}/env\ python:g $i | ||
| 52 | fi | ||
| 51 | sed -i -e s:${STAGING_BINDIR_NATIVE}:${bindir}:g $i | 53 | sed -i -e s:${STAGING_BINDIR_NATIVE}:${bindir}:g $i |
| 52 | done | 54 | done |
| 53 | fi | 55 | fi |
| 54 | 56 | ||
| 55 | if test -e ${D}${sbindir}; then | 57 | if test -e ${D}${sbindir}; then |
| 56 | for i in ${D}${sbindir}/* ; do \ | 58 | for i in ${D}${sbindir}/* ; do \ |
| 57 | sed -i -e s:${STAGING_BINDIR_NATIVE}/python-native/python:${bindir}/env\ python:g $i | 59 | if [ ${PN} != "${BPN}-native" ]; then |
| 60 | sed -i -e s:${STAGING_BINDIR_NATIVE}/python-native/python:${bindir}/env\ python:g $i | ||
| 61 | fi | ||
| 58 | sed -i -e s:${STAGING_BINDIR_NATIVE}:${bindir}:g $i | 62 | sed -i -e s:${STAGING_BINDIR_NATIVE}:${bindir}:g $i |
| 59 | done | 63 | done |
| 60 | fi | 64 | fi |
