diff mbox

trivial: add space in 'bool"package"' construct in Config.in

Message ID c92bd20931ef072a188e.1374235292@BEANTN0L019720
State Accepted
Commit 53f74fb5229e52f0939c9624fd17f5ef5f7a1e75
Headers show

Commit Message

Thomas De Schampheleire July 19, 2013, 12:01 p.m. UTC
In early buildroot, it apparently was customary to have following style in
Config.in files:
    bool"expat"

Nowadays, only two packages remain with this style: diffutils and expat.
This trivial patch lines them up with the style:
    bool "expat"

Signed-off-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com>

---
 package/diffutils/Config.in |  2 +-
 package/expat/Config.in     |  2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

Comments

Peter Korsgaard July 19, 2013, 9:44 p.m. UTC | #1
>>>>> "Thomas" == Thomas De Schampheleire <patrickdepinguin+buildroot@gmail.com> writes:

 Thomas> In early buildroot, it apparently was customary to have
 Thomas> following style in Config.in files: bool"expat"

 Thomas> Nowadays, only two packages remain with this style: diffutils and expat.
 Thomas> This trivial patch lines them up with the style:
 Thomas>     bool "expat"

Committed, thanks.
diff mbox

Patch

diff --git a/package/diffutils/Config.in b/package/diffutils/Config.in
--- a/package/diffutils/Config.in
+++ b/package/diffutils/Config.in
@@ -1,5 +1,5 @@ 
 config BR2_PACKAGE_DIFFUTILS
-	bool"diffutils"
+	bool "diffutils"
 	depends on BR2_USE_WCHAR
 	select BR2_PACKAGE_GETTEXT if BR2_NEEDS_GETTEXT_IF_LOCALE
 	help
diff --git a/package/expat/Config.in b/package/expat/Config.in
--- a/package/expat/Config.in
+++ b/package/expat/Config.in
@@ -1,5 +1,5 @@ 
 config BR2_PACKAGE_EXPAT
-	bool"expat"
+	bool "expat"
 	help
 	  The Expat XML Parser.