[oe] [meta-python][master][pyro][PATCH, v2] python-cython: mangle scripts to use /usr/bin/env python

S. Lockwood-Childs sjl at vctlabs.com
Fri May 19 23:45:54 UTC 2017


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.                                                                                                               
---
 meta-python/recipes-devtools/python/python-cython.inc | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/meta-python/recipes-devtools/python/python-cython.inc b/meta-python/recipes-devtools/python/python-cython.inc
index 1ecdcc9..22b49f3 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
+}
-- 
1.9.4




More information about the Openembedded-devel mailing list