diff options
author | markd <markd@pkgsrc.org> | 2013-08-13 21:24:37 +0000 |
---|---|---|
committer | markd <markd@pkgsrc.org> | 2013-08-13 21:24:37 +0000 |
commit | a0e631ed8e9729d5f63ce5afdaf5267ebf656f6a (patch) | |
tree | 2375686b2a8fb1f48647ce682a7c6cf555c38174 /math | |
parent | c6596ac962859b6322919c0a4f00efca6d04d2e4 (diff) | |
download | pkgsrc-a0e631ed8e9729d5f63ce5afdaf5267ebf656f6a.tar.gz |
If not building with lzo option give bogus path for lzo otherwise it will
be detected if its installed and build will fail.
Diffstat (limited to 'math')
-rw-r--r-- | math/py-pytables/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/math/py-pytables/Makefile b/math/py-pytables/Makefile index f7ad0e44094..b169a817d0b 100644 --- a/math/py-pytables/Makefile +++ b/math/py-pytables/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.27 2013/05/14 09:57:58 fhajny Exp $ +# $NetBSD: Makefile,v 1.28 2013/08/13 21:24:37 markd Exp $ # DISTNAME= tables-2.4.0 @@ -21,6 +21,8 @@ PYSETUPBUILDARGS= --hdf5=${BUILDLINK_PREFIX.hdf5} .if !empty(PKG_OPTIONS:Mlzo) PYSETUPBUILDARGS+= --lzo=${BUILDLINK_PREFIX.lzo} .include "../../archivers/lzo/buildlink3.mk" +.else +PYSETUPBUILDARGS+= --lzo=XXX .endif PYSETUPINSTALLARGS= ${PYSETUPBUILDARGS} PLIST_SUBST+= PYVERSSUFFIX=${PYVERSSUFFIX:Q} |