diff options
author | Brett Cannon <brett@python.org> | 2022-11-02 19:34:22 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-02 19:34:22 (GMT) |
commit | 22bab74c8f5fa6d53ddb7e40baa4334d09331c0f (patch) | |
tree | 4e206ed9f3a174081e0e87a3114fa1f7c73801fa | |
parent | e3ec272f57c3948834a6159cf2604978d3db67a0 (diff) | |
download | cpython-22bab74c8f5fa6d53ddb7e40baa4334d09331c0f.zip cpython-22bab74c8f5fa6d53ddb7e40baa4334d09331c0f.tar.gz cpython-22bab74c8f5fa6d53ddb7e40baa4334d09331c0f.tar.bz2 |
gh-97731: Specify the full path to the docs for `make docclean` (GH-98982)
Specify the full path to the docs for `make docclean`
This is to have `make clean` not error out on cross-builds.
-rw-r--r-- | Makefile.pre.in | 2 | ||||
-rw-r--r-- | Misc/NEWS.d/next/Build/2022-11-02-18-45-35.gh-issue-97731.zKpTlj.rst | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/Makefile.pre.in b/Makefile.pre.in index 9b35398..bae0ff0 100644 --- a/Makefile.pre.in +++ b/Makefile.pre.in @@ -2438,7 +2438,7 @@ rmtestturds: -rm -f gb-18030-2000.xml docclean: - $(MAKE) -C Doc clean + $(MAKE) -C $(srcdir)/Doc clean # like the 'clean' target but retain the profile guided optimization (PGO) # data. The PGO data is only valid if source code remains unchanged. diff --git a/Misc/NEWS.d/next/Build/2022-11-02-18-45-35.gh-issue-97731.zKpTlj.rst b/Misc/NEWS.d/next/Build/2022-11-02-18-45-35.gh-issue-97731.zKpTlj.rst new file mode 100644 index 0000000..46b1fb8 --- /dev/null +++ b/Misc/NEWS.d/next/Build/2022-11-02-18-45-35.gh-issue-97731.zKpTlj.rst @@ -0,0 +1,2 @@ +Specify the full path to the source location for ``make docclean`` (needed for +cross-builds). |