summaryrefslogtreecommitdiff
path: root/packages/python/python-native-2.4.0
diff options
context:
space:
mode:
authorMichael Lauer <mickey@vanille-media.de>2006-08-05 10:29:42 +0000
committerMichael Lauer <mickey@vanille-media.de>2006-08-05 10:29:42 +0000
commit4dc1f4375613f88ec1a0267bbf7599864241be0b (patch)
tree5118c35435dd11a31cbd4f93c66413fd1a73f1f4 /packages/python/python-native-2.4.0
parent724605880f14b284a20d341cc39c7578e1b1c35d (diff)
parent7f055c4ffb2bddec2da28bbf35069ef28396cd5b (diff)
merge of eb7d96a0afd303253a978ec21808298060b90fc2
and f01470a8f69abdfa702a7b6f512c94c9821e4ac7
Diffstat (limited to 'packages/python/python-native-2.4.0')
-rw-r--r--packages/python/python-native-2.4.0/dont-modify-shebang-line.patch16
1 files changed, 16 insertions, 0 deletions
diff --git a/packages/python/python-native-2.4.0/dont-modify-shebang-line.patch b/packages/python/python-native-2.4.0/dont-modify-shebang-line.patch
new file mode 100644
index 0000000000..54109afd62
--- /dev/null
+++ b/packages/python/python-native-2.4.0/dont-modify-shebang-line.patch
@@ -0,0 +1,16 @@
+
+#
+# Signed off by Michael 'Mickey' Lauer <mickey@Vanille.de>
+#
+
+--- Python-2.4/Lib/distutils/command/build_scripts.py~dont-modify-shebang-line
++++ Python-2.4/Lib/distutils/command/build_scripts.py
+@@ -87,7 +87,7 @@
+ continue
+
+ match = first_line_re.match(first_line)
+- if match:
++ if False: #match:
+ adjust = 1
+ post_interp = match.group(1) or ''
+