Skip to content

Commit e7966cd

Browse files
author
Myron Stowe
committed
tools: PCI: Remove .*.cmd files with make clean
JIRA: https://issues.redhat.com/browse/RHEL-67693 Upstream Status: 5dd15cc commit 5dd15cc Author: zhang jiao <[email protected]> Date: Mon Sep 2 12:12:40 2024 +0800 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]> Signed-off-by: Myron Stowe <[email protected]>
1 parent 0ba357b commit e7966cd

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)