gnome-desktop: Fix python location on recent distros

This fixes errors on distros with python as /bin/python of the form:

| error: Failed dependencies:
| 	/bin/python is needed by gnome-desktop-2.32.1-r5.i586

(From OE-Core rev: 02c5299cf6f1c347e2653409b32be8fd39876ac9)

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Richard Purdie 2012-08-02 21:28:58 +00:00
parent dee07308c1
commit d6f2cd7e03
1 changed files with 2 additions and 1 deletions

View File

@ -11,12 +11,13 @@ do_configure_prepend () {
FILES_${PN} += "${datadir}/gnome-about ${datadir}/libgnome-desktop/pnp.ids"
PR = "r5"
PR = "r6"
inherit gnome pkgconfig
do_install_append () {
sed -i -e's,${STAGING_BINDIR_NATIVE},${bindir},g' ${D}${bindir}/gnome-about
sed -i -e '1s,#!.*python,#! ${USRBINPATH}/env python,' ${D}${bindir}/gnome-about
}