aboutsummaryrefslogtreecommitdiffstats
path: root/meta/recipes-gnome/libglade/libglade-2.6.4
diff options
context:
space:
mode:
authorDongxiao Xu <dongxiao.xu@intel.com>2011-09-22 10:51:22 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-09-22 04:48:53 +0100
commit51cd0bdf1fad230e919392db8c72afe2d9e21fdb (patch)
tree4ed9ebc17d26ccf12128d618f1a14d364d2c1cdd /meta/recipes-gnome/libglade/libglade-2.6.4
parent08fd9740b9359425ec6ee9810fab1152e9737b0c (diff)
downloadopenembedded-core-51cd0bdf1fad230e919392db8c72afe2d9e21fdb.tar.gz
libglade: fix the python environment settings
@PYTHON@ will points to the abstract path in sysroot, which should be replaced by "#!/usr/bin/env python". This should fix the sato-sdk rootfs error. Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-gnome/libglade/libglade-2.6.4')
-rw-r--r--meta/recipes-gnome/libglade/libglade-2.6.4/python_environment.patch14
1 files changed, 14 insertions, 0 deletions
diff --git a/meta/recipes-gnome/libglade/libglade-2.6.4/python_environment.patch b/meta/recipes-gnome/libglade/libglade-2.6.4/python_environment.patch
new file mode 100644
index 0000000000..b4ca49de25
--- /dev/null
+++ b/meta/recipes-gnome/libglade/libglade-2.6.4/python_environment.patch
@@ -0,0 +1,14 @@
+Using @PYTHON@ for this path would result in the build system python being
+referred to. Instead we want to locate python from the environment.
+
+Upstream Status: Inappropriate [configuration]
+
+diff -ruN libglade-2.6.4-orig//libglade-convert.in libglade-2.6.4/libglade-convert.in
+--- libglade-2.6.4-orig//libglade-convert.in 2011-09-22 10:18:28.991164003 +0800
++++ libglade-2.6.4/libglade-convert.in 2011-09-22 10:18:55.431164003 +0800
+@@ -1,4 +1,4 @@
+-#!@PYTHON@
++#!/usr/bin/env python
+ # -*- mode: python -*-
+
+ # yes, this requires python 2.x and an XML parser module (eg. PyExpat)