py-scipy: GFORTRAN_VERSION might not be defined.
Fixes bulk builds.
This commit is contained in:
parent
8505a8c1bb
commit
5bdf15de2b
1 changed files with 2 additions and 2 deletions
|
@ -1,4 +1,4 @@
|
|||
# $NetBSD: Makefile,v 1.31 2018/05/11 14:18:47 minskim Exp $
|
||||
# $NetBSD: Makefile,v 1.32 2018/05/12 21:21:46 jperkin Exp $
|
||||
|
||||
DISTNAME= scipy-1.0.1
|
||||
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
|
||||
|
@ -22,7 +22,7 @@ PLIST_VARS+= dsym
|
|||
PYSETUPBUILDARGS+= --fcompiler=g95
|
||||
.elif defined(PKGSRC_FORTRAN) && !empty(PKGSRC_FORTRAN:Mgfortran)
|
||||
PYSETUPBUILDARGS+= --fcompiler=gnu95
|
||||
. if ${GFORTRAN_VERSION} == "7"
|
||||
. if defined(GFORTRAN_VERSION) && ${GFORTRAN_VERSION} == "7"
|
||||
PLIST.dsym= yes
|
||||
. endif
|
||||
LDFLAGS.Darwin+= -undefined dynamic_lookup
|
||||
|
|
Loading…
Reference in a new issue