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 | e3d5000424842d167594c98b640c46f36f1caeb4 (patch) | |
tree | 743e89fcaa443f52aa0d2c95cec2b701be46f84a /config.lib | |
parent | 2710144452d3c9fd92173a9ea5eb243f2ad96791 (diff) | |
download | openttd-e3d5000424842d167594c98b640c46f36f1caeb4.tar.xz |
(svn r13786) -Fix (r13785): reconfigure gave warnings on the newly introduced options.
Diffstat (limited to 'config.lib')
-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";; |