[Buildroot] [PATCH] Config.in: fix warning

H Hartley Sweeten hartleys at visionengravers.com
Thu May 13 22:20:01 UTC 2010


The latest change to BR2_VERSION left the trailing " off the
default value.  This produces the following warning:

$ make menuconfig
Config.in:11:warning: multi-line strings not supported

Add the " to fix the warning.

Signed-off-by: H Hartley Sweeten <hsweeten at visionengravers.com>

---

diff --git a/Config.in b/Config.in
index c0151bd..6639399 100644
--- a/Config.in
+++ b/Config.in
@@ -8,7 +8,7 @@ config BR2_HAVE_DOT_CONFIG
 
 config BR2_VERSION
 	string
-	default "2010.05-rc2
+	default "2010.05-rc2"
 
 source "target/Config.in.arch"
 source "target/device/Config.in"


More information about the buildroot mailing list