diff options
author | Nitin A Kamble <nitin.a.kamble@intel.com> | 2010-07-06 05:07:49 -0700 |
---|---|---|
committer | Saul Wold <Saul.Wold@intel.com> | 2010-07-08 22:05:20 -0700 |
commit | e18aba581c7f3f8518b8a9a850b6fe1eabc285ff (patch) | |
tree | 364264738a43168c79ba49402b0a7535e0a24ad8 /meta/packages/python/python-native-2.6.5/11-distutils-never-modify-shebang-line.patch | |
parent | 936a73eae5fd5732c9dc5ae2a47d6196f7f69c0a (diff) | |
download | poky-e18aba581c7f3f8518b8a9a850b6fe1eabc285ff.tar.gz |
python: upgrade from 2.6.2 to 2.6.5
python-native: upgrade from 2.6.1 to 2.6.5
Also removed these older version files:
python_2.5.2
python-native_2.5.1
Rebased the patches to the newer code.
Signed-off-by: Nitin A Kamble <nitin.a.kamble@intel.com>
Diffstat (limited to 'meta/packages/python/python-native-2.6.5/11-distutils-never-modify-shebang-line.patch')
-rw-r--r-- | meta/packages/python/python-native-2.6.5/11-distutils-never-modify-shebang-line.patch | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/meta/packages/python/python-native-2.6.5/11-distutils-never-modify-shebang-line.patch b/meta/packages/python/python-native-2.6.5/11-distutils-never-modify-shebang-line.patch new file mode 100644 index 0000000000..8354e266fa --- /dev/null +++ b/meta/packages/python/python-native-2.6.5/11-distutils-never-modify-shebang-line.patch | |||
@@ -0,0 +1,18 @@ | |||
1 | # Don't modify the she-bang line for a cross-build. | ||
2 | # Otherwise it points to our hostpython (which we do not want) | ||
3 | # | ||
4 | # Signed-Off: Michael 'Mickey' Lauer <mickey@vanille-media.de> | ||
5 | |||
6 | Index: Python-2.6.1/Lib/distutils/command/build_scripts.py | ||
7 | =================================================================== | ||
8 | --- Python-2.6.1.orig/Lib/distutils/command/build_scripts.py | ||
9 | +++ Python-2.6.1/Lib/distutils/command/build_scripts.py | ||
10 | @@ -87,7 +87,7 @@ class build_scripts (Command): | ||
11 | continue | ||
12 | |||
13 | match = first_line_re.match(first_line) | ||
14 | - if match: | ||
15 | + if False: #match: | ||
16 | adjust = 1 | ||
17 | post_interp = match.group(1) or '' | ||
18 | |||