From 00d38702d8d6f627e641b32d26f6fee1f0e1cd7c Mon Sep 17 00:00:00 2001 From: Adrian Reber Date: Thu, 11 Jun 2026 20:42:14 +0000 Subject: [PATCH] test: fix clean target paths for libcriu, rpc, and crit The clean target referenced libcriu, rpc, and crit directories directly, but these are located under others/. This caused "make -C test clean" to fail with "No such file or directory" when reaching the sub-make calls. Fix the paths to others/libcriu, others/rpc, and others/crit. Assisted-by: Claude Code (claude-opus-4-6):claude-opus-4-6@default Signed-off-by: Adrian Reber --- test/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/Makefile b/test/Makefile index 0bfdab680..6b676a355 100644 --- a/test/Makefile +++ b/test/Makefile @@ -56,7 +56,7 @@ clean: clean_root $(Q) $(RM) *.log $(Q) $(RM) -r ./dump/ $(Q) $(MAKE) -C zdtm cleandep clean cleanout - $(Q) $(MAKE) -C libcriu clean - $(Q) $(MAKE) -C rpc clean - $(Q) $(MAKE) -C crit clean + $(Q) $(MAKE) -C others/libcriu clean + $(Q) $(MAKE) -C others/rpc clean + $(Q) $(MAKE) -C others/crit clean .PHONY: clean