mirror of
https://github.com/PartialVolume/shredos.x86_64.git
synced 2026-02-21 18:12:13 +00:00
- fixup include- and libdirs. Closes #841
- rediff patches against 2.4.2
This commit is contained in:
18
package/python/python-020-gentoo_py_dontcompile.patch
Normal file
18
package/python/python-020-gentoo_py_dontcompile.patch
Normal file
@@ -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(
|
||||
Reference in New Issue
Block a user