Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 16 Dec 2012 15:11:35 +0000 (UTC)
From:      Pawel Pekala <pawel@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r309010 - head/math/openblas
Message-ID:  <201212161511.qBGFBZGf099062@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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
 



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