diff options
author | skidd13 <skidd13@openttd.org> | 2008-07-22 22:44:41 +0000 |
---|---|---|
committer | skidd13 <skidd13@openttd.org> | 2008-07-22 22:44:41 +0000 |
commit | 317207ce0c7abeebcc2a6e50e2e5607b5003737f (patch) | |
tree | 8e593a105bbec9460cc7f7e6cc234f3a31e868a4 /configure | |
parent | 9db4ea623042200a3ab3c93c76aa5ddbc868cec8 (diff) | |
download | openttd-317207ce0c7abeebcc2a6e50e2e5607b5003737f.tar.xz |
(svn r13792) -Codechange: Display current values of the options in ./configre --help instead of static strings
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -43,9 +43,15 @@ if [ "$1" = "--reconfig" ] || [ "$1" = "--reconfigure" ]; then exit $? fi +export SHOW_HELP="0" + set_default detect_params "$@" check_params +if [ "$SHOW_HELP" != "0" ]; then + showhelp + exit 0 +fi save_params make_cflags_and_ldflags |