From: Sam Ravnborg Date: Sun, 6 May 2007 07:20:10 +0000 (+0200) Subject: kconfig: error out if recursive dependencies are found X-Git-Tag: v2.6.22-rc1~1007^2~2 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5447d34b080a1e3e312b05a91e87eff4710a1152;p=pandora-kernel.git kconfig: error out if recursive dependencies are found Sample: config FOO bool "This is foo" depends on BAR config BAR bool "This is bar" depends on FOO This will result in following error message: error: found recursive dependency: FOO -> BAR -> FOO And will then exit with exit code equal 1 so make will stop. Inspired by patch from: Adrian Bunk Signed-off-by: Sam Ravnborg Cc: Adrian Bunk Cc: Roman Zippel --- Reading git-diff-tree failed