qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [PATCH v3] configure: avoid screening of --{en, dis}abl


From: Peter Maydell
Subject: Re: [Qemu-devel] [PATCH v3] configure: avoid screening of --{en, dis}able-usb-redir options
Date: Thu, 24 Nov 2011 12:00:28 +0000

On 24 November 2011 11:53, Max Filippov <address@hidden> wrote:
> +  --sbindir=*)
> +  ;;
> +  --libexecdir=*)
> +  ;;
> +  --sharedstatedir=*)
> +  ;;

You can combine these all into one case, like this:

    --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.
    ;;

(also please include the comment as rationale in the configure
script).

-- PMM



reply via email to

[Prev in Thread] Current Thread [Next in Thread]