* [Qemu-trivial] [PATCH v2] configure: Improve help behavior
@ 2014-04-18 6:55 Fam Zheng
2014-04-24 13:52 ` Michael Tokarev
0 siblings, 1 reply; 2+ messages in thread
From: Fam Zheng @ 2014-04-18 6:55 UTC (permalink / raw)
To: qemu-devel; +Cc: qemu-trivial, mjt
Old:
There are two paths to show help and exit 1, one is with "-h" or
"--help", one is with invalid options.
New:
Show help and exit 0 for --help.
On invalid option, don't show the long help and bury the early "ERROR:"
line, just give a message pointing to --help.
Signed-off-by: Fam Zheng <famz@redhat.com>
---
configure | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/configure b/configure
index 69b9f56..b1401c6 100755
--- a/configure
+++ b/configure
@@ -1087,7 +1087,10 @@ for opt do
;;
--enable-quorum) quorum="yes"
;;
- *) echo "ERROR: unknown option $opt"; show_help="yes"
+ *)
+ echo "ERROR: unknown option $opt"
+ echo "Try '$0 --help' for more information"
+ exit 1
;;
esac
done
@@ -1353,7 +1356,7 @@ Advanced options (experts only):
NOTE: The object files are built at the place where configure is launched
EOF
-exit 1
+exit 0
fi
# Now we have handled --enable-tcg-interpreter and know we're not just
--
1.9.2
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [Qemu-trivial] [PATCH v2] configure: Improve help behavior
2014-04-18 6:55 [Qemu-trivial] [PATCH v2] configure: Improve help behavior Fam Zheng
@ 2014-04-24 13:52 ` Michael Tokarev
0 siblings, 0 replies; 2+ messages in thread
From: Michael Tokarev @ 2014-04-24 13:52 UTC (permalink / raw)
To: Fam Zheng, qemu-devel; +Cc: qemu-trivial
18.04.2014 10:55, Fam Zheng wrote:
> Old:
> There are two paths to show help and exit 1, one is with "-h" or
> "--help", one is with invalid options.
>
> New:
> Show help and exit 0 for --help.
> On invalid option, don't show the long help and bury the early "ERROR:"
> line, just give a message pointing to --help.
Applied to -trivial, thanks!
/mjt
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2014-04-25 1:24 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-04-18 6:55 [Qemu-trivial] [PATCH v2] configure: Improve help behavior Fam Zheng
2014-04-24 13:52 ` Michael Tokarev
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.