Skip to content

Commit 5dd15cc

Browse files
zhang jiaokwilczynski
authored andcommitted
tools: PCI: Remove .*.cmd files with make clean
Remove any leftover .*.cmd files with make clean. No functional changes intended. Link: https://lore.kernel.org/linux-pci/[email protected] Signed-off-by: zhang jiao <[email protected]> [kwilczynski: commit log, move .*.cmd before .*.d to align with other Makefiles, don't remove the newline] Signed-off-by: Krzysztof Wilczyński <[email protected]>
1 parent 8400291 commit 5dd15cc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/pci/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ $(OUTPUT)pcitest: $(PCITEST_IN)
4242
clean:
4343
rm -f $(ALL_PROGRAMS)
4444
rm -rf $(OUTPUT)include/
45-
find $(or $(OUTPUT),.) -name '*.o' -delete -o -name '\.*.d' -delete
45+
find $(or $(OUTPUT),.) -name '*.o' -delete -o -name '\.*.cmd' -delete -o -name '\.*.d' -delete
4646

4747
install: $(ALL_PROGRAMS)
4848
install -d -m 755 $(DESTDIR)$(bindir); \

0 commit comments

Comments
 (0)