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-10-09 13:58:27 +0300
committerDaniel Bevenius <daniel.bevenius@gmail.com>2017-10-12 12:01:53 +0300
commit6cc4cf75b945676beaa1a573b35eb438cd7f0914 (patch)
tree3d9169d5beb165deed8715ffc31a4c34afe71455 /configure
parentbeb5226c296492e214346ada70a736195dcab699 (diff)
build: correct minor typo in lttng help message
Currently the help message when using --with-lttng looks like this: $ ./configure --help | grep 'with-lttng' --with-lttng build with Lttng (Only available to Linux) This commit makes the help message consistent with the error message that is raised if --with-lttng is used on a non-Linux operating system: $ ./configure --help | grep 'with-lttng' --with-lttng build with Lttng (Only available on Linux) PR-URL: https://github.com/nodejs/node/pull/16101 Reviewed-By: Lance Ball <lball@redhat.com> Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com>
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index 1cb5bf84401..ac51638da86 100755
--- a/configure
+++ b/configure
@@ -357,7 +357,7 @@ parser.add_option('--with-dtrace',
parser.add_option('--with-lttng',
action='store_true',
dest='with_lttng',
- help='build with Lttng (Only available to Linux)')
+ help='build with Lttng (Only supported on Linux)')
parser.add_option('--with-etw',
action='store_true',