svn commit: r456578 - head/biology/hmmer

Jan Beich jbeich at FreeBSD.org
Mon Dec 18 03:39:33 UTC 2017


Jan Beich <jbeich at 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}


More information about the svn-ports-head mailing list