From a8531bfa395d1cc7025495738d89b83890c33a88 Mon Sep 17 00:00:00 2001 From: Josef Bacik Date: Wed, 23 Nov 2022 17:37:10 -0500 Subject: [PATCH] btrfs-progs: fix make clean to clean convert properly We were not clearing the .o files for btrfs-convert as we had the wrong directory, which meant I missed a compile error that happened when I was messing with kernel-shared. Fix this by making sure we clear the .o files for convert properly. Fixes: 753baf244358 ("btrfs-progs: build: redirect dependency files files to .deps") Signed-off-by: Josef Bacik Signed-off-by: David Sterba --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 0b0be8de..8cf6bf6a 100644 --- a/Makefile +++ b/Makefile @@ -794,7 +794,7 @@ clean: $(CLEANDIRS) kernel-lib/*.o kernel-lib/.deps/*.o.d \ kernel-shared/*.o kernel-shared/.deps/*.o.d \ image/*.o image/.deps/*.o.d \ - convert/.deps/*.o convert/.deps/*.o.d \ + convert/*.o convert/.deps/*.o.d \ mkfs/*.o mkfs/.deps/*.o.d check/*.o check/.deps/*.o.d \ cmds/*.o cmds/.deps/*.o.d common/*.o common/.deps/*.o.d \ crypto/*.o crypto/.deps/*.o.d \