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 <julien.pinon@luceor.com> SVN-Revision: 9692
This commit is contained in:
		| @@ -74,9 +74,9 @@ world: FORCE | |||||||
| 	$(MAKE) package/compile | 	$(MAKE) package/compile | ||||||
| 	-( \ | 	-( \ | ||||||
| 		cd package; \ | 		cd package; \ | ||||||
| 		find . -maxdepth 2 -name Config.in | \ | 		for configfile in `find . -maxdepth 2 -name Config.in` ; do \ | ||||||
| 			sed -e 's,/Config.in,,g' | \ | 			$(MAKE) compile -C `dirname $$configfile` ; \ | ||||||
| 			xargs -n1 $(MAKE) compile -C; \ | 		done \ | ||||||
| 	) | 	) | ||||||
|  |  | ||||||
| clean: FORCE | clean: FORCE | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user
	 Felix Fietkau
					Felix Fietkau