Skip to content

Commit 6d63612

Browse files
danbevMylesBorins
authored andcommitted
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: #16101 Reviewed-By: Lance Ball <lball@redhat.com> Reviewed-By: Gibson Fahnestock <gibfahn@gmail.com>
1 parent 07c14f3 commit 6d63612

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

configure

+1-1
Original file line numberDiff line numberDiff line change
@@ -350,7 +350,7 @@ parser.add_option('--with-dtrace',
350350
parser.add_option('--with-lttng',
351351
action='store_true',
352352
dest='with_lttng',
353-
help='build with Lttng (Only available to Linux)')
353+
help='build with Lttng (Only supported on Linux)')
354354

355355
parser.add_option('--with-etw',
356356
action='store_true',

0 commit comments

Comments
 (0)