From 95b31165ea9ff421870ed3300c0c607867b4095b Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Sun, 9 Dec 2007 18:52:52 +0000 Subject: [PATCH] suppress bug after compiling last package in kamikaze SDK. This patch corrects https://dev.openwrt.org/ticket/2508 An error was raised when no Config.in file was found in package/ Signed-off-by: Julien Pinon SVN-Revision: 9692 --- target/sdk/files/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/target/sdk/files/Makefile b/target/sdk/files/Makefile index ebd30bf32a..8b054b447f 100644 --- a/target/sdk/files/Makefile +++ b/target/sdk/files/Makefile @@ -74,9 +74,9 @@ world: FORCE $(MAKE) package/compile -( \ cd package; \ - find . -maxdepth 2 -name Config.in | \ - sed -e 's,/Config.in,,g' | \ - xargs -n1 $(MAKE) compile -C; \ + for configfile in `find . -maxdepth 2 -name Config.in` ; do \ + $(MAKE) compile -C `dirname $$configfile` ; \ + done \ ) clean: FORCE -- 2.30.2