diff options
author | Thomas De Schampheleire <patrickdepinguin+buildroot@gmail.com> | 2013-07-19 14:01:32 +0200 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2013-07-19 23:44:09 +0200 |
commit | 53f74fb5229e52f0939c9624fd17f5ef5f7a1e75 (patch) | |
tree | b6590c28c93b2d22b663a701b36eb04c3dc14f44 | |
parent | 4db37c663cc0988cf5993d14ee5fdb7976f45694 (diff) | |
download | buildroot-53f74fb5229e52f0939c9624fd17f5ef5f7a1e75.tar.gz buildroot-53f74fb5229e52f0939c9624fd17f5ef5f7a1e75.zip |
trivial: add space in 'bool"package"' construct in Config.in
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>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
-rw-r--r-- | package/diffutils/Config.in | 2 | ||||
-rw-r--r-- | package/expat/Config.in | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/package/diffutils/Config.in b/package/diffutils/Config.in index 4cc16e2127..7b2c9f909b 100644 --- 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 index 3988c9041f..758fb7d516 100644 --- 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. |