This is an automated email from the ASF dual-hosted git repository. ronny pushed a commit to branch win-fix-nouveau-dir in repository https://gitbox.apache.org/repos/asf/couchdb.git
commit 405b6f63117b5ce0f4d14ab82bb04586994cc0d9 Author: Ronny Berndt <[email protected]> AuthorDate: Mon Jan 19 23:35:39 2026 +0100 fix: Nouveau directory moving on Windows Fix missing Nouveau dir moving for Windows --- Makefile.win | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile.win b/Makefile.win index 98d275413..1482472fd 100644 --- a/Makefile.win +++ b/Makefile.win @@ -397,8 +397,8 @@ endif ifeq ($(with_nouveau), true) -@mkdir rel\couchdb\nouveau - @cd nouveau && $(GRADLE) installDist - @xcopy nouveau\build\install\nouveau rel\couchdb\nouveau /E /I + @cd extra\nouveau && $(GRADLE) installDist + @xcopy extra\nouveau\build\install\nouveau rel\couchdb\nouveau /E /I endif @echo ... done @@ -444,7 +444,7 @@ clean: -@del /f/q dev\boot_node.beam dev\pbkdf2.pyc log\crash.log >NUL 2>&1 || true -@rmdir /s/q src\docs\build src\docs\.venv >NUL 2>&1 || true ifeq ($(with_nouveau), true) - @cd nouveau && $(GRADLE) clean + @cd extra\nouveau && $(GRADLE) clean endif .PHONY: distclean
