diff options
| author | Hamish Moffatt | 2008-10-08 07:02:59 +0200 |
|---|---|---|
| committer | Hamish Moffatt | 2008-10-08 07:02:59 +0200 |
| commit | 433a26a515a3c3839ba0a9424d18025c9b6019a1 (patch) | |
| tree | 96288a55e842b616b2f2e374adaa8e887b522eba /package/python/python-2.4-020-gentoo_py_dontcompile.patch | |
| parent | widen options to configure directfb, patch by Micha Nelissen <micha@neli.hopt... (diff) | |
| download | buildroot-433a26a515a3c3839ba0a9424d18025c9b6019a1.tar.gz buildroot-433a26a515a3c3839ba0a9424d18025c9b6019a1.tar.xz buildroot-433a26a515a3c3839ba0a9424d18025c9b6019a1.zip | |
Rename patches to include Python 2.4 version, in preparation for adding 2.5
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, 18 insertions, 0 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 new file mode 100644 index 000000000..6e634bef4 --- /dev/null +++ b/package/python/python-2.4-020-gentoo_py_dontcompile.patch @@ -0,0 +1,18 @@ +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( |
