From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:40858) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RTKlR-0008Hs-4Q for qemu-devel@nongnu.org; Wed, 23 Nov 2011 16:53:57 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RTKlQ-00042C-DZ for qemu-devel@nongnu.org; Wed, 23 Nov 2011 16:53:57 -0500 Received: from [188.134.19.124] (port=34980 helo=octofox.metropolis) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RTKlQ-00041w-07 for qemu-devel@nongnu.org; Wed, 23 Nov 2011 16:53:56 -0500 From: Max Filippov Date: Thu, 24 Nov 2011 01:53:38 +0400 Message-Id: <1322085218-10192-1-git-send-email-jcmvbkbc@gmail.com> Subject: [Qemu-devel] [PATCH] configure: avoid screening of --{en, dis}able-usb-redir options List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Max Filippov --*dir) option pattern precede --{en,dis}able-usb-redir) patterns in the option analysis switch, making the latter options have no effect. Signed-off-by: Max Filippov --- configure | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/configure b/configure index f033438..e5566c8 100755 --- a/configure +++ b/configure @@ -759,8 +759,6 @@ for opt do ;; --enable-opengl) opengl="yes" ;; - --*dir) - ;; --disable-rbd) rbd="no" ;; --enable-rbd) rbd="yes" @@ -783,6 +781,8 @@ for opt do ;; --disable-guest-agent) guest_agent="no" ;; + --*dir) + ;; *) echo "ERROR: unknown option $opt"; show_help="yes" ;; esac -- 1.7.6.4