diff mbox series

[v3,02/29] btrfs-progs: fix make clean to clean convert properly

Message ID fee273e52a96c2eaa4783573b20544901c83993e.1669242804.git.josef@toxicpanda.com (mailing list archive)
State New, archived
Headers show
Series prep and initial sync of kernel code | expand

Commit Message

Josef Bacik Nov. 23, 2022, 10:37 p.m. UTC
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.

Signed-off-by: Josef Bacik <josef@toxicpanda.com>
---
 Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Anand Jain Nov. 28, 2022, 5:32 a.m. UTC | #1
On 11/24/22 04:07, Josef Bacik wrote:
> 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.
> 
> Signed-off-by: Josef Bacik <josef@toxicpanda.com>

Reviewed-by: Anand Jain <anand.jain@oracle.com>
diff mbox series

Patch

diff --git a/Makefile b/Makefile
index 1777a22e..475754e2 100644
--- a/Makefile
+++ b/Makefile
@@ -795,7 +795,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 \