comparison files/patch-lib-python_3_sysconfig.py @ 78:a5f5a5ecec13

Do not write into the current directory while building the port: only use WRKDIR. WRKDIR is given as PYPY_WRKDIR into the MAKE_ENV.
author Franz Glasner <fzglas.hg@dom66.de>
date Mon, 03 Oct 2022 17:53:21 +0200
parents
children
comparison
equal deleted inserted replaced
77:913b7ccce398 78:a5f5a5ecec13
1 --- lib-python/3/sysconfig.py.orig 2022-03-28 09:53:47 UTC
2 +++ lib-python/3/sysconfig.py
3 @@ -436,7 +436,11 @@ def _generate_posix_vars(args):
4 pprint.pprint(vars, stream=f)
5
6 # Create file used for sys.path fixup -- see Modules/getpath.c
7 - with open('pybuilddir.txt', 'w', encoding='utf8') as f:
8 + pybuilddir_txt = 'pybuilddir.txt'
9 + pypy_wrkdir = os.environ.get("PYPY_WRKDIR") # this is set by FreeBSD port
10 + if pypy_wrkdir is not None:
11 + pybuilddir_txt = os.path.join(pypy_wrkdir, pybuilddir_txt)
12 + with open(pybuilddir_txt, 'w', encoding='utf8') as f:
13 f.write(pybuilddir)
14
15 def _init_posix(vars):