Follow @Openwall on Twitter for new release announcements and other news
[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Date: Wed, 4 May 2016 17:31:06 -0400
From: Rich Felker <dalias@...c.org>
To: musl@...ts.openwall.com
Subject: Re: [PATCH] fix redundant processing of --build flag

On Wed, May 04, 2016 at 03:29:42AM +0000, LeMay, Michael wrote:
> The --build flag is listed in two case statement entries in configure,
> which causes the second entry to be ignored. This patch removes it
> from the first entry.

Thanks! Applied.

Rich

> 
> Signed-off-by: Michael LeMay <michael.lemay@...el.com>
> ---
>  configure | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/configure b/configure
> index 3794291..3432b58 100755
> --- a/configure
> +++ b/configure
> @@ -172,7 +172,7 @@ case "$arg" in
>  --disable-wrapper|--enable-wrapper=no) wrapper=no ;;
>  --enable-gcc-wrapper|--enable-gcc-wrapper=yes) wrapper=yes ; gcc_wrapper=yes ;;
>  --disable-gcc-wrapper|--enable-gcc-wrapper=no) wrapper=no ;;
> ---enable-*|--disable-*|--with-*|--without-*|--*dir=*|--build=*) ;;
> +--enable-*|--disable-*|--with-*|--without-*|--*dir=*) ;;
>  --host=*|--target=*) target=${arg#*=} ;;
>  --build=*) build=${arg#*=} ;;
>  -* ) echo "$0: unknown option $arg" ;;
> -- 
> 2.5.0

Powered by blists - more mailing lists

Confused about mailing lists and their use? Read about mailing lists on Wikipedia and check out these guidelines on proper formatting of your messages.