diff options
author | rubidium <rubidium@openttd.org> | 2008-07-22 18:53:52 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2008-07-22 18:53:52 +0000 |
commit | a26e816f77bb46936fbebc7b8c87cf610414ad4b (patch) | |
tree | 743e89fcaa443f52aa0d2c95cec2b701be46f84a | |
parent | 690e3ecb3fd61c6c649ac74a8b9efee26db2b107 (diff) | |
download | openttd-a26e816f77bb46936fbebc7b8c87cf610414ad4b.tar.xz |
(svn r13786) -Fix (r13785): reconfigure gave warnings on the newly introduced options.
-rw-r--r-- | config.lib | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/config.lib b/config.lib index af2244a18..a0fe602ec 100644 --- a/config.lib +++ b/config.lib @@ -214,10 +214,11 @@ detect_params() { --with-menu-entry) with_menu_entry="1";; + --with-menu-entry=*) with_menu_entry="$optarg";; --without-menu-entry) with_menu_entry="0";; - --menu_group) prevp_p="menu_group";; - --menu_group=*) menu_group="$optarg";; + --menu-group) prevp_p="menu_group";; + --menu-group=*) menu_group="$optarg";; |