1
0
mirror of https://git.yoctoproject.org/poky synced 2026-06-02 01:19:52 +00:00

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.

(From OE-Core rev: 51cd0bdf1fad230e919392db8c72afe2d9e21fdb)

Signed-off-by: Dongxiao Xu <dongxiao.xu@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Dongxiao Xu
2011-09-22 10:51:22 +08:00
committed by Richard Purdie
parent ee6e30adc3
commit a502a18484
2 changed files with 16 additions and 2 deletions
@@ -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)