diff options
author | Miro HronĨok <miro@hroncok.cz> | 2023-11-15 16:42:17 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-15 16:42:17 (GMT) |
commit | ec055073673d5b949aa81311405d92159bab342e (patch) | |
tree | 1ff42aae8c6fbc3e7a5525a0c456cead49591162 /Misc/NEWS.d/next/Build | |
parent | 58469244beceb515c74cbdbd655256c0da569612 (diff) | |
download | cpython-ec055073673d5b949aa81311405d92159bab342e.zip cpython-ec055073673d5b949aa81311405d92159bab342e.tar.gz cpython-ec055073673d5b949aa81311405d92159bab342e.tar.bz2 |
gh-96954: Fix `make regen-unicodedata` in out-of-tree builds (#112118)
This avoids:
python3.13 Tools/unicode/makeunicodedata.py
python3.13: can't open file '.../build/debug/Tools/unicode/makeunicodedata.py': [Errno 2] No such file or directory
make: *** [Makefile:1498: regen-unicodedata] Error 2
Re-run `make regen-unicodedata` to update the script path in generated files.
Diffstat (limited to 'Misc/NEWS.d/next/Build')
-rw-r--r-- | Misc/NEWS.d/next/Build/2023-11-15-16-56-20.gh-issue-96954.6FYvKn.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Build/2023-11-15-16-56-20.gh-issue-96954.6FYvKn.rst b/Misc/NEWS.d/next/Build/2023-11-15-16-56-20.gh-issue-96954.6FYvKn.rst new file mode 100644 index 0000000..e9a30e5 --- /dev/null +++ b/Misc/NEWS.d/next/Build/2023-11-15-16-56-20.gh-issue-96954.6FYvKn.rst @@ -0,0 +1 @@ +Make ``make regen-unicodedata`` work for out-of-tree builds of CPython. |