Skip to content

Commit

Permalink
build: correct minor typo in lttng help message
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
danbev committed Oct 12, 2017
1 parent beb5226 commit 6cc4cf7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion configure
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit 6cc4cf7

Please sign in to comment.