]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core-contrib.git/blob
80388fa9b0f4dd7a585a9b23cdbe8655e9fc81ff
[thirdparty/openembedded/openembedded-core-contrib.git] /
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
5
6 Upstream-Status: Submitted [https://github.com/arsv/perl-cross/pull/133]
7 Signed-off-by: Alexander Kanavin <alex@linutronix.de>
8 ---
9 Makefile | 2 +-
10 1 file changed, 1 insertion(+), 1 deletion(-)
11
12 diff --git a/Makefile b/Makefile
13 index 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 \