summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'dev-lang/python/files/patches/python-2.4-gentoo_py_dontcompile.patch')
-rw-r--r--dev-lang/python/files/patches/python-2.4-gentoo_py_dontcompile.patch18
1 files changed, 0 insertions, 18 deletions
diff --git a/dev-lang/python/files/patches/python-2.4-gentoo_py_dontcompile.patch b/dev-lang/python/files/patches/python-2.4-gentoo_py_dontcompile.patch
deleted file mode 100644
index 9cd1c31..0000000
--- a/dev-lang/python/files/patches/python-2.4-gentoo_py_dontcompile.patch
+++ /dev/null
@@ -1,18 +0,0 @@
---- Python-2.4/Python/import.c 2004-09-08 10:02:03.166032656 +0100
-+++ import.c 2004-09-08 10:02:57.423420120 +0100
-@@ -808,8 +808,12 @@
- write_compiled_module(PyCodeObject *co, char *cpathname, long mtime)
- {
- FILE *fp;
--
-- fp = open_exclusive(cpathname);
-+ char *py_dontcompile = getenv("PYTHON_DONTCOMPILE");
-+
-+ if (!py_dontcompile)
-+ fp = open_exclusive(cpathname);
-+ else
-+ fp = NULL;
- if (fp == NULL) {
- if (Py_VerboseFlag)
- PySys_WriteStderr(
-