aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/python/python-2.7.1/99-ignore-optimization-flag.patch
diff options
context:
space:
mode:
Diffstat (limited to 'recipes/python/python-2.7.1/99-ignore-optimization-flag.patch')
-rw-r--r--recipes/python/python-2.7.1/99-ignore-optimization-flag.patch19
1 files changed, 19 insertions, 0 deletions
diff --git a/recipes/python/python-2.7.1/99-ignore-optimization-flag.patch b/recipes/python/python-2.7.1/99-ignore-optimization-flag.patch
new file mode 100644
index 0000000000..f068ecedaf
--- /dev/null
+++ b/recipes/python/python-2.7.1/99-ignore-optimization-flag.patch
@@ -0,0 +1,19 @@
+# Reinstate the empty -O option to fix weird mixing of native and target
+# binaries and libraries with LD_LIBRARY_PATH when host==target
+#
+# Signed-off-by: Denys Dmytriyenko <denis@denix.org>
+
+Index: Python-2.7.1/Modules/main.c
+===================================================================
+--- Python-2.7.1.orig/Modules/main.c 2010-06-13 02:50:39.000000000 -0400
++++ Python-2.7.1/Modules/main.c 2010-12-26 10:09:34.300455892 -0500
+@@ -329,8 +329,7 @@
+
+ /* case 'J': reserved for Jython */
+
+- case 'O':
+- Py_OptimizeFlag++;
++ case 'O': /* ignore it */
+ break;
+
+ case 'B':