[oe-commits] Ross Burton : gnome-doc-utils: drop the usage of create_wrapper

git at git.openembedded.org git at git.openembedded.org
Thu Jun 13 16:32:15 UTC 2013


Module: openembedded-core.git
Branch: master
Commit: 470a67d9047ccabe3b624238f31c0381793404be
URL:    http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=470a67d9047ccabe3b624238f31c0381793404be

Author: Ross Burton <ross.burton at intel.com>
Date:   Wed Jun 12 17:42:25 2013 +0100

gnome-doc-utils: drop the usage of create_wrapper

create_wrapper was previously abused to invoke the Python interpretter directly
instead of relying on #! parsing, which is read into a 128 byte buffer so breaks
with deep build directories.

However now that we already install a "nativepython" binary into the native
sysroot, use sed to change the #! line to /usr/bin/env nativepython.

Signed-off-by: Ross Burton <ross.burton at intel.com>
Signed-off-by: Saul Wold <sgw at linux.intel.com>

---

 meta/recipes-gnome/gnome/gnome-doc-utils.inc |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/meta/recipes-gnome/gnome/gnome-doc-utils.inc b/meta/recipes-gnome/gnome/gnome-doc-utils.inc
index 9d243a1..b0433ad 100644
--- a/meta/recipes-gnome/gnome/gnome-doc-utils.inc
+++ b/meta/recipes-gnome/gnome/gnome-doc-utils.inc
@@ -20,7 +20,7 @@ do_install_append() {
 }
 
 do_install_append_class-native () {
-	create_wrapper ${D}${bindir}/xml2po ${STAGING_BINDIR_NATIVE}/python-native/python
+	sed -i -e 's|^#!.*/usr/bin/env python|#! /usr/bin/env nativepython|' ${D}${bindir}/xml2po
 }
 
 FILES_${PN} += "${datadir}/xml* ${PYTHON_SITEPACKAGES_DIR}/*"



More information about the Openembedded-commits mailing list