diff options
author | Saul Wold <sgw@linux.intel.com> | 2011-09-22 12:05:33 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-09-22 22:28:09 +0100 |
commit | e9f8b99215447091a7a61b34373f0073089de255 (patch) | |
tree | 6129c111b6dc71bd6970b820b5f72d1887859024 /meta/recipes-gnome/gnome | |
parent | ff8f0ea563ba3e9d6f8b8e770cfbf4dca8ad5288 (diff) | |
download | poky-e9f8b99215447091a7a61b34373f0073089de255.tar.gz |
gnome-desktop: Fix python path in scripts to use target path
(From OE-Core rev: 22fd67f854f70f79ea94af11c61ef63939d54ac2)
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-gnome/gnome')
-rw-r--r-- | meta/recipes-gnome/gnome/gnome-desktop.inc | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/meta/recipes-gnome/gnome/gnome-desktop.inc b/meta/recipes-gnome/gnome/gnome-desktop.inc index 336b87f248..1317fffc0b 100644 --- a/meta/recipes-gnome/gnome/gnome-desktop.inc +++ b/meta/recipes-gnome/gnome/gnome-desktop.inc | |||
@@ -11,7 +11,11 @@ do_configure_prepend () { | |||
11 | 11 | ||
12 | FILES_${PN} += "${datadir}/gnome-about" | 12 | FILES_${PN} += "${datadir}/gnome-about" |
13 | 13 | ||
14 | PR = "r1" | 14 | PR = "r2" |
15 | 15 | ||
16 | inherit gnome pkgconfig | 16 | inherit gnome pkgconfig |
17 | 17 | ||
18 | do_install_append () { | ||
19 | sed -i -e's,${STAGING_BINDIR_NATIVE},${bindir},g' ${D}${bindir}/gnome-about | ||
20 | } | ||
21 | |||