From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:38640) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RTXsU-00079w-Fo for qemu-devel@nongnu.org; Thu, 24 Nov 2011 06:54:12 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RTXsT-0003vA-D7 for qemu-devel@nongnu.org; Thu, 24 Nov 2011 06:54:06 -0500 Received: from [195.131.132.186] (port=45111 helo=shelob.oktetlabs.ru) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RTXsT-0003ua-1i for qemu-devel@nongnu.org; Thu, 24 Nov 2011 06:54:05 -0500 From: Max Filippov Date: Thu, 24 Nov 2011 15:53:45 +0400 Message-Id: <1322135625-20707-1-git-send-email-jcmvbkbc@gmail.com> In-Reply-To: <1322134856-20331-1-git-send-email-jcmvbkbc@gmail.com> References: <1322134856-20331-1-git-send-email-jcmvbkbc@gmail.com> Subject: [Qemu-devel] [PATCH v3] 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 , peter.maydell@linaro.org, pbonzini@redhat.com --*dir) option pattern precede --{en,dis}able-usb-redir) patterns in the option analysis switch, making the latter options have no effect. There were some --*dir that are supported by Autoconf and not by QEMU configure. The aim was to let QEMU packagers use the rpm (or similar) macro that overrides directories for their distribution. Replace --*dir with exact option names. Signed-off-by: Max Filippov --- v2 -> v3 changes: add --htmldir --- configure | 26 ++++++++++++++++++++++++-- 1 files changed, 24 insertions(+), 2 deletions(-) diff --git a/configure b/configure index f033438..3a23795 100755 --- a/configure +++ b/configure @@ -569,6 +569,30 @@ for opt do ;; --sysconfdir=*) sysconfdir="$optarg" ;; + --sbindir=*) + ;; + --libexecdir=*) + ;; + --sharedstatedir=*) + ;; + --localstatedir=*) + ;; + --oldincludedir=*) + ;; + --datarootdir=*) + ;; + --infodir=*) + ;; + --localedir=*) + ;; + --htmldir=*) + ;; + --dvidir=*) + ;; + --pdfdir=*) + ;; + --psdir=*) + ;; --disable-sdl) sdl="no" ;; --enable-sdl) sdl="yes" @@ -759,8 +783,6 @@ for opt do ;; --enable-opengl) opengl="yes" ;; - --*dir) - ;; --disable-rbd) rbd="no" ;; --enable-rbd) rbd="yes" -- 1.7.2.5