blob: 80388fa9b0f4dd7a585a9b23cdbe8655e9fc81ff [file] [log] [blame]
Andrew Geissler78b72792022-06-14 06:47:25 -05001From 7b8d819e012c24df228a313beb86e1942611c904 Mon Sep 17 00:00:00 2001
2From: Alexander Kanavin <alex@linutronix.de>
3Date: Sat, 4 Jun 2022 13:00:12 +0200
4Subject: [PATCH] Makefile: correctly list modules when cleaning them
5
6Upstream-Status: Submitted [https://github.com/arsv/perl-cross/pull/133]
7Signed-off-by: Alexander Kanavin <alex@linutronix.de>
8---
9 Makefile | 2 +-
10 1 file changed, 1 insertion(+), 1 deletion(-)
11
12diff --git a/Makefile b/Makefile
13index 6b35fb0..9ef9324 100644
14--- a/Makefile
15+++ b/Makefile
16@@ -462,7 +462,7 @@ clean-subdirs:
17
18 # assuming modules w/o Makefiles were never built and need no cleaning
19 clean-modules: config.h
20- @for i in $(modules disabled); do \
21+ @for i in $(modules) $(disabled); do \
22 test -f $$i/Makefile && \
23 touch $$i/Makefile && \
24 $(MAKE) -C $$i clean \