diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-12-18 09:21:05 +0100 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-12-18 09:22:54 +0100 |
commit | 2277fdeca8c94f8ea8fe8afebcdbb176c6b1531d (patch) | |
tree | 36d7ec9a782d6879a40323aa75edb027efd89640 /package/nodejs | |
parent | 20cdd433142e49a6c9e35085565e7f2c4ce97e44 (diff) | |
download | buildroot-2277fdeca8c94f8ea8fe8afebcdbb176c6b1531d.tar.gz buildroot-2277fdeca8c94f8ea8fe8afebcdbb176c6b1531d.zip |
package/*/Config.in: fix help text check-package warnings
This commit fixes the warnings reported by check-package on the help
text of all package Config.in files, related to the formatting of the
help text: should start with a tab, then 2 spaces, then at most 62
characters.
The vast majority of warnings fixed were caused by too long lines. A
few warnings were related to spaces being used instead of a tab to
indent the help text.
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/nodejs')
-rw-r--r-- | package/nodejs/Config.in | 30 |
1 files changed, 17 insertions, 13 deletions
diff --git a/package/nodejs/Config.in b/package/nodejs/Config.in index 345fe1047d..d2846f8d57 100644 --- a/package/nodejs/Config.in +++ b/package/nodejs/Config.in @@ -31,7 +31,8 @@ config BR2_PACKAGE_NODEJS select BR2_PACKAGE_LIBUV select BR2_PACKAGE_ZLIB help - Event-driven I/O server-side JavaScript environment based on V8. + Event-driven I/O server-side JavaScript environment based on + V8. http://nodejs.org/ @@ -42,8 +43,8 @@ config BR2_PACKAGE_NODEJS_NPM select BR2_PACKAGE_OPENSSL help NPM is the package manager for the Node JavaScript platform. - Note that enabling NPM on the target also selects OpenSSL for the - target. + Note that enabling NPM on the target also selects OpenSSL + for the target. http://www.npmjs.org @@ -58,20 +59,23 @@ config BR2_PACKAGE_NODEJS_MODULES_ADDITIONAL download and save tgz files or clone git repos for the components you care about. - Example: serialport uglify-js@1.3.4 /my/module/mymodule.tgz git://github.com/someuser/somemodule.git#v1.2 + Example: + serialport uglify-js@1.3.4 /my/module/mymodule.tgz \ + git://github.com/someuser/somemodule.git#v1.2 - This would install the serialport module (at the newest version), - the uglify-js module at 1.3.4, a module from a filesystem path, - and a module from a git repository. + This would install the serialport module (at the newest + version), the uglify-js module at 1.3.4, a module from a + filesystem path, and a module from a git repository. config BR2_PACKAGE_NODEJS_MODULES_ADDITIONAL_DEPS string "Additional module dependencies" help - List of space-separated buildroot recipes which must be built before - your npms can be installed. For example, if in 'Additional modules' - you specified 'node-curl' (see: - https://github.com/jiangmiao/node-curl), you could then specify - 'libcurl' here, to ensure that buildroot builds the libcurl package, - and does so before building your node modules. + List of space-separated buildroot recipes which must be + built before your npms can be installed. For example, if in + 'Additional modules' you specified 'node-curl' (see: + https://github.com/jiangmiao/node-curl), you could then + specify 'libcurl' here, to ensure that buildroot builds the + libcurl package, and does so before building your node + modules. endif |