From: Max Filippov Date: Thu, 24 Nov 2011 12:11:31 +0000 (+0400) Subject: configure: avoid screening of --{en, dis}able-usb-redir options X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=023ddd743136d2b1f7a2e6b3772736f96bfca1ff;p=qmiga%2Fqemu.git configure: avoid screening of --{en, dis}able-usb-redir options --*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. Reviewed-by: Paolo Bonzini Signed-off-by: Max Filippov Signed-off-by: Anthony Liguori --- diff --git a/configure b/configure index a7caf1e190..ac4840d45b 100755 --- a/configure +++ b/configure @@ -569,6 +569,14 @@ for opt do ;; --sysconfdir=*) sysconfdir="$optarg" ;; + --sbindir=*|--libexecdir=*|--sharedstatedir=*|--localstatedir=*|\ + --oldincludedir=*|--datarootdir=*|--infodir=*|--localedir=*|\ + --htmldir=*|--dvidir=*|--pdfdir=*|--psdir=*) + # These switches are silently ignored, for compatibility with + # autoconf-generated configure scripts. This allows QEMU's + # configure to be used by RPM and similar macros that set + # lots of directory switches by default. + ;; --disable-sdl) sdl="no" ;; --enable-sdl) sdl="yes" @@ -759,8 +767,6 @@ for opt do ;; --enable-opengl) opengl="yes" ;; - --*dir) - ;; --disable-rbd) rbd="no" ;; --enable-rbd) rbd="yes"