From b10aef032c821a545325356874e703d50258a31e Mon Sep 17 00:00:00 2001 From: Daniel Bevenius Date: Mon, 9 Oct 2017 12:58:27 +0200 Subject: [PATCH 1/2] 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) --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index 1cb5bf84401cb3..2c14a5486de85a 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 available on Linux)') parser.add_option('--with-etw', action='store_true', From e2a3b14fd29b4ebe4844c43221fd2ab59b95ea03 Mon Sep 17 00:00:00 2001 From: Daniel Bevenius Date: Wed, 11 Oct 2017 18:14:23 +0200 Subject: [PATCH 2/2] squash: change available to supported --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index 2c14a5486de85a..ac51638da8601b 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 on Linux)') + help='build with Lttng (Only supported on Linux)') parser.add_option('--with-etw', action='store_true',