svn commit: r309010 - head/math/openblas
Pawel Pekala
pawel at FreeBSD.org
Sun Dec 16 15:11:35 UTC 2012
Author: pawel
Date: Sun Dec 16 15:11:34 2012
New Revision: 309010
URL: http://svnweb.freebsd.org/changeset/ports/309010
Log:
- Option descriptions should not be quoted
- Use negation instead of empty()
Reported by: jhale
Modified:
head/math/openblas/Makefile
Modified: head/math/openblas/Makefile
==============================================================================
--- head/math/openblas/Makefile Sun Dec 16 14:53:00 2012 (r309009)
+++ head/math/openblas/Makefile Sun Dec 16 15:11:34 2012 (r309010)
@@ -43,10 +43,10 @@ WRKSRC= ${WRKDIR}/${GH_USER}-${GH_PORTN
OPTIONS_DEFINE= DYNAMIC_ARCH INTERFACE64 OPENMP AVX
-DYNAMIC_ARCH_DESC= "Support multiple CPU types on i386 and amd64"
-INTERFACE64_DESC= "Use 8 byte integers on 64-bit architectures"
-OPENMP_DESC= "Use OpenMP for threading"
-AVX_DESC= "Support Advanced Vector Extensions (AVX)"
+DYNAMIC_ARCH_DESC= Support multiple CPU types on i386 and amd64
+INTERFACE64_DESC= Use 8 byte integers on 64-bit architectures
+OPENMP_DESC= Use OpenMP for threading
+AVX_DESC= Support Advanced Vector Extensions (AVX)
.if defined(PACKAGE_BUILDING)
OPTIONS_DEFAULT= DYNAMIC_ARCH
@@ -87,7 +87,7 @@ BROKEN = QUAD_PRECISION is broken; pleas
BUILDFLAGS+= QUAD_PRECISION=1
.endif
-.if empty ( ${PORT_OPTIONS:MAVX} )
+.if ! ${PORT_OPTIONS:MAVX}
BUILDFLAGS+= NO_AVX=1
.endif
More information about the svn-ports-head
mailing list