From e3d5000424842d167594c98b640c46f36f1caeb4 Mon Sep 17 00:00:00 2001 From: rubidium Date: Tue, 22 Jul 2008 18:53:52 +0000 Subject: [PATCH] (svn r13786) -Fix (r13785): reconfigure gave warnings on the newly introduced options. --- config.lib | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/config.lib b/config.lib index af2244a183..a0fe602ec9 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";;