diff options
author | richard <richard@pkgsrc.org> | 2016-09-07 13:36:35 +0000 |
---|---|---|
committer | richard <richard@pkgsrc.org> | 2016-09-07 13:36:35 +0000 |
commit | c384f7e144d4355bf769017d0a421cdabf91ca2e (patch) | |
tree | 1a0a24a8a3ffa85987af39ac752da66df8efa0c2 /geography | |
parent | c24f8206f97e25b7fe6ea6412e057dcb81a0e677 (diff) | |
download | pkgsrc-c384f7e144d4355bf769017d0a421cdabf91ca2e.tar.gz |
Apparently python3 insists that print arguments are inside parens
should fix PLIST issues on py34 & py35
Diffstat (limited to 'geography')
-rw-r--r-- | geography/py-obspy/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/geography/py-obspy/Makefile b/geography/py-obspy/Makefile index c3cead094db..e76db50e6a6 100644 --- a/geography/py-obspy/Makefile +++ b/geography/py-obspy/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.8 2016/09/05 16:09:11 richard Exp $ +# $NetBSD: Makefile,v 1.9 2016/09/07 13:36:35 richard Exp $ DISTNAME= obspy-1.0.2 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} @@ -30,7 +30,7 @@ pre-configure: .include "../../lang/python/pyversion.mk" .if exists(${PYTHONBIN:Q}) -PYPLATFORM!= ${PYTHONBIN} -c 'import platform; print platform.system() + "_" + platform.architecture()[0]' +PYPLATFORM!= ${PYTHONBIN} -c 'import platform; print (platform.system() + "_" + platform.architecture()[0])' PLIST_SUBST+= PYPLATFORM=${PYPLATFORM} PYPKGPREFIX=${PYPKGPREFIX} PRINT_PLIST_AWK+= /^${PYPLATFORM:S|/|\\/|g}/ \ |