Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Bevenius <daniel.bevenius@gmail.com>2017-11-16 15:33:10 +0300
committerAnna Henningsen <anna@addaleax.net>2017-11-18 22:55:04 +0300
commit6c5a39c51f82ea7c2f82e3faaa505c0dc3388647 (patch)
tree6b1a64888bd4caf571bef35c866143ccb8c8f23e /configure
parent078eaa9f98c081dd53b1f0cafe7bb51dfa79ca5f (diff)
build: minor corrections to configure descriptions
PR-URL: https://github.com/nodejs/node/pull/17094 Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net>
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure8
1 files changed, 4 insertions, 4 deletions
diff --git a/configure b/configure
index bbccf05fb47..5703a70cb2d 100755
--- a/configure
+++ b/configure
@@ -144,7 +144,7 @@ parser.add_option("--partly-static",
parser.add_option("--enable-vtune-profiling",
action="store_true",
dest="enable_vtune_profiling",
- help="Enable profiling support for Intel VTune profiler to profile"
+ help="Enable profiling support for Intel VTune profiler to profile "
"JavaScript code executed in nodejs. This feature is only available "
"for x32, x86 and x64 architectures.")
@@ -152,9 +152,9 @@ parser.add_option("--enable-vtune-profiling",
parser.add_option("--link-module",
action="append",
dest="linked_module",
- help="Path to a JS file to be bundled in the binary as a builtin."
- "This module will be referenced by path without extension."
- "e.g. /root/x/y.js will be referenced via require('root/x/y')."
+ help="Path to a JS file to be bundled in the binary as a builtin. "
+ "This module will be referenced by path without extension; "
+ "e.g. /root/x/y.js will be referenced via require('root/x/y'). "
"Can be used multiple times")
parser.add_option("--openssl-no-asm",