diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-08-02 21:28:58 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-08-02 23:01:07 +0100 |
commit | 02c5299cf6f1c347e2653409b32be8fd39876ac9 (patch) | |
tree | 4850977d191547206b3584d23c80944d8a50d2cc | |
parent | a624ec02c4acec83efbe66406f22abafbdce5d63 (diff) | |
download | openembedded-core-02c5299cf6f1c347e2653409b32be8fd39876ac9.tar.gz openembedded-core-02c5299cf6f1c347e2653409b32be8fd39876ac9.tar.bz2 openembedded-core-02c5299cf6f1c347e2653409b32be8fd39876ac9.zip |
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
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-gnome/gnome/gnome-desktop.inc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/recipes-gnome/gnome/gnome-desktop.inc b/meta/recipes-gnome/gnome/gnome-desktop.inc index 51933b23b4..4687a7b1ca 100644 --- a/meta/recipes-gnome/gnome/gnome-desktop.inc +++ b/meta/recipes-gnome/gnome/gnome-desktop.inc @@ -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 } |