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: 753baf2443
("btrfs-progs: build: redirect dependency files files to .deps")
Signed-off-by: Josef Bacik <josef@toxicpanda.com>
Signed-off-by: David Sterba <dsterba@suse.com>
This commit is contained in:
parent
66d6d56f04
commit
a8531bfa39
2
Makefile
2
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 \
|
||||
|
|
Loading…
Reference in New Issue