diff options
author | rillig <rillig@pkgsrc.org> | 2019-11-04 17:47:29 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2019-11-04 17:47:29 +0000 |
commit | 2d86850bf0400a99e0d8fe3efd34a7ac47f42f2e (patch) | |
tree | 8e9daea8ac6ef3bf0c99e0f1de4cd365fe966b81 /math/py-scipy | |
parent | b910e7e5c16996b09e2b2b3b6a219f8a4f94ae7d (diff) | |
download | pkgsrc-2d86850bf0400a99e0d8fe3efd34a7ac47f42f2e.tar.gz |
mk: make BROKEN a list of lines, like PKG_FAIL_REASON
Packages defined the variable BROKEN inconsistently. Some added quotes,
like they are required in PKG_FAIL_REASON, some omitted them.
Now all packages behave the same, and pkglint will flag future mistakes.
Diffstat (limited to 'math/py-scipy')
-rw-r--r-- | math/py-scipy/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/math/py-scipy/Makefile b/math/py-scipy/Makefile index faceba1d596..00d78e4cb37 100644 --- a/math/py-scipy/Makefile +++ b/math/py-scipy/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.39 2019/11/02 16:16:22 rillig Exp $ +# $NetBSD: Makefile,v 1.40 2019/11/04 17:47:30 rillig Exp $ DISTNAME= scipy-1.3.0 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} @@ -22,7 +22,7 @@ PYSETUPBUILDARGS+= --fcompiler=g95 PYSETUPBUILDARGS+= --fcompiler=gnu95 LDFLAGS.Darwin+= -undefined dynamic_lookup .else -BROKEN= Requires fortran 95 +BROKEN= "Requires fortran 95" .endif CPPFLAGS+= -D__STDC_FORMAT_MACROS |