Skip to content

Commit 37ab447

Browse files
danbevtargos
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 c89ef9d commit 37ab447

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

configure

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -357,7 +357,7 @@ parser.add_option('--with-dtrace',
357357
parser.add_option('--with-lttng',
358358
action='store_true',
359359
dest='with_lttng',
360-
help='build with Lttng (Only available to Linux)')
360+
help='build with Lttng (Only supported on Linux)')
361361

362362
parser.add_option('--with-etw',
363363
action='store_true',

0 commit comments

Comments
 (0)