From 433a26a515a3c3839ba0a9424d18025c9b6019a1 Mon Sep 17 00:00:00 2001 From: Hamish Moffatt Date: Wed, 8 Oct 2008 05:02:59 +0000 Subject: Rename patches to include Python 2.4 version, in preparation for adding 2.5 --- package/python/python-020-gentoo_py_dontcompile.patch | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 package/python/python-020-gentoo_py_dontcompile.patch (limited to 'package/python/python-020-gentoo_py_dontcompile.patch') diff --git a/package/python/python-020-gentoo_py_dontcompile.patch b/package/python/python-020-gentoo_py_dontcompile.patch deleted file mode 100644 index 6e634bef4..000000000 --- a/package/python/python-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( -- cgit v1.2.3