diff options
author | Maxime Ripard <maxime.ripard@anandra.org> | 2010-12-10 23:05:39 +0100 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2011-01-25 08:56:20 +0100 |
commit | d82df10e90ee9457ea0baba2d6a766149d4b7c38 (patch) | |
tree | c99a4dab60853a69a86061328c2ad965ef5aa226 /package/python/python-2.4-020-gentoo_py_dontcompile.patch | |
parent | afe54f1008dee29af6338d8766381aad9e2871bd (diff) |
python: Port the python2.4 patches to 2.7
Signed-off-by: Maxime Ripard <ripard@archos.com>
Diffstat (limited to 'package/python/python-2.4-020-gentoo_py_dontcompile.patch')
-rw-r--r-- | package/python/python-2.4-020-gentoo_py_dontcompile.patch | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/package/python/python-2.4-020-gentoo_py_dontcompile.patch b/package/python/python-2.4-020-gentoo_py_dontcompile.patch deleted file mode 100644 index 6e634bef4..000000000 --- a/package/python/python-2.4-020-gentoo_py_dontcompile.patch +++ /dev/null @@ -1,18 +0,0 @@ -diff -rduNp Python-2.4.2-010/Python/import.c Python-2.4.2/Python/import.c ---- Python-2.4.2-010/Python/import.c 2005-09-14 20:15:03.000000000 +0200 -+++ Python-2.4.2/Python/import.c 2007-01-22 19:49:18.000000000 +0100 -@@ -822,8 +822,12 @@ static void - 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( |