[Buildroot] [git commit] bdwgc: fix _ARCH_SUPPORTS kconfig warning

Peter Korsgaard peter at korsgaard.com
Wed Dec 3 08:45:40 UTC 2014


commit: http://git.buildroot.net/buildroot/commit/?id=b2ba4b31b36a95f27c078165d118a37b57deefd7
branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master

We have to define it as a bool, otherwise kconfig complains with:

package/bdwgc/Config.in:1:warning: config symbol defined without type

Signed-off-by: Peter Korsgaard <peter at korsgaard.com>
---
 package/bdwgc/Config.in |    1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/package/bdwgc/Config.in b/package/bdwgc/Config.in
index 215c54d..ec83fa3 100644
--- a/package/bdwgc/Config.in
+++ b/package/bdwgc/Config.in
@@ -1,4 +1,5 @@
 config BR2_PACKAGE_BDWGC_ARCH_SUPPORTS
+	bool
 	default y
 	depends on BR2_arm || BR2_armeb || BR2_avr32 || BR2_i386 \
 		|| BR2_mips || BR2_mipsel || BR2_powerpc || BR2_sh \


More information about the buildroot mailing list