DESCRIPTION = "utils for managing LZMA compressed files" HOMEPAGE = "http://tukaani.org/xz/" SECTION = "base" LICENSE = "GPLv2+ & GPLv3+ & LGPLv2.1+" LIC_FILES_CHKSUM = "file://COPYING;md5=c475b6c7dca236740ace4bba553e8e1c \ file://COPYING.GPLv2;md5=751419260aa954499f7abaabaa882bbe \ file://COPYING.GPLv3;md5=d32239bcb673463ab874e80d47fae504 \ file://COPYING.LGPLv2.1;md5=fbc093901857fcd118f065f900982c24 \ file://lib/getopt.c;endline=23;md5=2069b0ee710572c03bb3114e4532cd84 " SRC_URI = "http://tukaani.org/xz/xz-${PV}.tar.gz" SRC_URI[md5sum] = "03d139cc14294fd45504989b914335ff" SRC_URI[sha256sum] = "57e979baaa40147dde1bbb284e3618f8f18b6532c932648bd57b5aee674b98a7" PR = "r0" inherit autotools gettext BBCLASSEXTEND = "native" openembedded-core.git
Mirror of openembedded-coreMulti-Tech Systems
summaryrefslogtreecommitdiff
path: root/meta/recipes-devtools/python/python-native/11-distutils-never-modify-shebang-line.patch
blob: 8354e266fa5c9adc559a7dbff7b0d86e2da51db6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Don't modify the she-bang line for a cross-build.
# Otherwise it points to our hostpython (which we do not want)
#
# Signed-Off: Michael 'Mickey' Lauer <mickey@vanille-media.de>

Index: Python-2.6.1/Lib/distutils/command/build_scripts.py
===================================================================
--- Python-2.6.1.orig/Lib/distutils/command/build_scripts.py
+++ Python-2.6.1/Lib/distutils/command/build_scripts.py
@@ -87,7 +87,7 @@ class build_scripts (Command):
                     continue
 
                 match = first_line_re.match(first_line)
-                if match:
+                if False: #match:
                     adjust = 1
                     post_interp = match.group(1) or ''