1 From 7b8d819e012c24df228a313beb86e1942611c904 Mon Sep 17 00:00:00 2001
2 From: Alexander Kanavin <alex@linutronix.de>
3 Date: Sat, 4 Jun 2022 13:00:12 +0200
4 Subject: [PATCH] Makefile: correctly list modules when cleaning them
6 Upstream-Status: Submitted [https://github.com/arsv/perl-cross/pull/133]
7 Signed-off-by: Alexander Kanavin <alex@linutronix.de>
10 1 file changed, 1 insertion(+), 1 deletion(-)
12 diff --git a/Makefile b/Makefile
13 index 6b35fb0..9ef9324 100644
16 @@ -462,7 +462,7 @@ clean-subdirs:
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 \