Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 18 Dec 2017 04:39:26 +0100
From:      Jan Beich <jbeich@FreeBSD.org>
To:        Mark Linimon <linimon@FreeBSD.org>
Cc:        svn-ports-head@freebsd.org, svn-ports-all@freebsd.org, ports-committers@freebsd.org
Subject:   Re: svn commit: r456578 - head/biology/hmmer
Message-ID:  <fu88-u2kx-wny@FreeBSD.org>
In-Reply-To: <zi6g-u2w7-wny@FreeBSD.org> (Jan Beich's message of "Mon, 18 Dec 2017 04:32:40 %2B0100")
References:  <201712180232.vBI2WlFi034525@repo.freebsd.org> <zi6g-u2w7-wny@FreeBSD.org>

next in thread | previous in thread | raw e-mail | index | archive | help
Jan Beich <jbeich@FreeBSD.org> writes:

> +CONFIGURE_ARGS_i386=	${"${MACHINE_CPU:Msse2}":?:"--disable-sse"}
[...]
> +PLIST_SUB_i386=	IMPL_CHOICE=${"${MACHINE_CPU:Msse2}":?"sse":"dummy"}

Oops, :? make(1) modifier only needs variable quoted, not replacements strings.
The following would've been more correct.

CONFIGURE_ARGS_i386=	${"${MACHINE_CPU:Msse2}":?:--disable-sse}
PLIST_SUB_i386=	IMPL_CHOICE=${"${MACHINE_CPU:Msse2}":?sse:dummy}



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?fu88-u2kx-wny>