From owner-svn-ports-head@freebsd.org Mon May 2 05:28:04 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id A6B65B22BE3; Mon, 2 May 2016 05:28:04 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 792B61EE1; Mon, 2 May 2016 05:28:04 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u425S38g054409; Mon, 2 May 2016 05:28:03 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u425S3iW054408; Mon, 2 May 2016 05:28:03 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201605020528.u425S3iW054408@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Mon, 2 May 2016 05:28:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r414432 - head/math/openblas X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 02 May 2016 05:28:04 -0000 Author: pi Date: Mon May 2 05:28:03 2016 New Revision: 414432 URL: https://svnweb.freebsd.org/changeset/ports/414432 Log: math/openblas: fix poudriere builds: setting DYNAMIC_ARCH when BULK is defined PR: 209190 Submitted by: Joseph Mingrone Approved by: (maintainer) Modified: head/math/openblas/Makefile Modified: head/math/openblas/Makefile ============================================================================== --- head/math/openblas/Makefile Mon May 2 05:22:58 2016 (r414431) +++ head/math/openblas/Makefile Mon May 2 05:28:03 2016 (r414432) @@ -40,7 +40,7 @@ OPENMP_DESC= Use OpenMP for threading AVX_DESC= Support Advanced Vector Extensions (AVX) AVX2_DESC= Support Advanced Vector Extensions 2 (AVX2) -.if defined(PACKAGE_BUILDING) +.if defined(BATCH) || defined(PACKAGE_BUILDING) OPTIONS_DEFAULT= DYNAMIC_ARCH .endif @@ -76,11 +76,6 @@ USES+= compiler:openmp BUILDFLAGS_THREAD+= USE_OPENMP=1 .endif -.if ${PORT_OPTIONS:MQUAD_PRECISION} -BROKEN= QUAD_PRECISION is broken; please disable this option -BUILDFLAGS+= QUAD_PRECISION=1 -.endif - .if ! ${PORT_OPTIONS:MAVX} BUILDFLAGS+= NO_AVX=1 .endif @@ -123,7 +118,7 @@ post-patch: -e 's+%%FIND%%+${FIND}+' \ -e 's+%%XARGS%%+${XARGS}+' \ -e 's+%%REINPLACE_CMD%%+${REINPLACE_CMD}+' \ - -e 's+$$(CROSS_SUFFIX)+${LOCALBASE}/bin/+' \ + -e 's+$${CROSS_SUFFIX}+${LOCALBASE}/bin/+' \ ${WRKSRC}/Makefile.system .if ${PORT_OPTIONS:MOPENMP} ${REINPLACE_CMD} -e "s+OPENBLAS_NUM_THREADS+OMP_NUM_THREADS+g" \