aboutsummaryrefslogtreecommitdiffstats
path: root/package/python/python-gentoo_py_dontcompile.patch
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2007-01-22 18:48:48 +0000
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2007-01-22 18:48:48 +0000
commit6440b9fd175c06263b5da2616e228e39e424cccd (patch)
tree90b0a40a00529983cf002d6bed4a901674f2ef8e /package/python/python-gentoo_py_dontcompile.patch
parent92139ef20f9bfbf2e22ee9b6be0f0694fd85b710 (diff)
downloadbuildroot-novena-6440b9fd175c06263b5da2616e228e39e424cccd.tar.gz
buildroot-novena-6440b9fd175c06263b5da2616e228e39e424cccd.zip
- fixup include- and libdirs. Closes #841
- rediff patches against 2.4.2
Diffstat (limited to 'package/python/python-gentoo_py_dontcompile.patch')
-rw-r--r--package/python/python-gentoo_py_dontcompile.patch17
1 files changed, 0 insertions, 17 deletions
diff --git a/package/python/python-gentoo_py_dontcompile.patch b/package/python/python-gentoo_py_dontcompile.patch
deleted file mode 100644
index 22ecd0ef7..000000000
--- a/package/python/python-gentoo_py_dontcompile.patch
+++ /dev/null
@@ -1,17 +0,0 @@
---- Python-2.3.2/Python/import.c 2003-10-08 12:29:03.166032656 +0100
-+++ import.c 2003-10-08 12:32: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(