This is an automated email from the ASF dual-hosted git repository.
ronny pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/couchdb.git
The following commit(s) were added to refs/heads/main by this push:
new 656f3c4f1 fix: Nouveau directory moving on Windows
656f3c4f1 is described below
commit 656f3c4f18ca7bd064749f4b84f27eb88c8aa0ea
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