diff options
author | Max Filippov | 2011-11-24 13:11:31 +0100 |
---|---|---|
committer | Anthony Liguori | 2011-11-28 23:20:53 +0100 |
commit | 023ddd743136d2b1f7a2e6b3772736f96bfca1ff (patch) | |
tree | d13ff7091b8868f265417f3cb4efbb63e5c4e5e7 | |
parent | cutils: Make strtosz & friends leave follow set to callers (diff) | |
download | qemu-023ddd743136d2b1f7a2e6b3772736f96bfca1ff.tar.gz qemu-023ddd743136d2b1f7a2e6b3772736f96bfca1ff.tar.xz qemu-023ddd743136d2b1f7a2e6b3772736f96bfca1ff.zip |
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 <pbonzini@redhat.com>
Signed-off-by: Max Filippov <jcmvbkbc@gmail.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
-rwxr-xr-x | configure | 10 |
1 files changed, 8 insertions, 2 deletions
@@ -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" |