From 8c85e1a7d1a58f80497ab6546207abfe051987a4 Mon Sep 17 00:00:00 2001 From: "S. Lockwood-Childs" Date: Fri, 19 May 2017 17:13:07 -0700 Subject: python-cython: mangle scripts to use /usr/bin/env python This prevents runtime failure "bad interpreter: No such file or directory" from running native cython when the native python is installed at a long path, exceeding the 128-character limit for shebang lines on linux. Exceeding the limit was already possible when using a long path for topdir, but it got easier to exceed after the switch to per-recipe sysroots. Signed-off-by: Martin Jansa --- meta-python/recipes-devtools/python/python-cython.inc | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'meta-python/recipes-devtools/python/python-cython.inc') diff --git a/meta-python/recipes-devtools/python/python-cython.inc b/meta-python/recipes-devtools/python/python-cython.inc index 1ecdcc9fda..da39d14c01 100644 --- a/meta-python/recipes-devtools/python/python-cython.inc +++ b/meta-python/recipes-devtools/python/python-cython.inc @@ -17,3 +17,10 @@ RDEPENDS_${PN}_class-target += "\ ${PYTHON_PN}-subprocess \ ${PYTHON_PN}-shell \ " + +do_install_append() { + # Make sure we use /usr/bin/env python + for PYTHSCRIPT in `grep -rIl '^#!.*python' ${D}`; do + sed -i -e '1s|^#!.*|#!/usr/bin/env ${PYTHON_PN}|' $PYTHSCRIPT + done +} -- cgit 1.2.3-korg