diff options
author | Mike Frysinger <vapier@gentoo.org> | 2004-10-12 00:06:48 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2004-10-12 00:06:48 +0000 |
commit | 4e809df67f33170e0b79a88116057b05576a230a (patch) | |
tree | 43176b45e94d65d56945e2cba330208ebfd28efa /package/python/python-gentoo_py_dontcompile.patch | |
parent | 663a55ca28e2de33cd37897e030dcc13d04f079f (diff) |
more updates for python
Diffstat (limited to 'package/python/python-gentoo_py_dontcompile.patch')
-rw-r--r-- | package/python/python-gentoo_py_dontcompile.patch | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/package/python/python-gentoo_py_dontcompile.patch b/package/python/python-gentoo_py_dontcompile.patch new file mode 100644 index 000000000..22ecd0ef7 --- /dev/null +++ b/package/python/python-gentoo_py_dontcompile.patch @@ -0,0 +1,17 @@ +--- 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( |