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 | d0a9951bec61d55bad71bb507a4cd85a64ae6f38 (patch) | |
tree | 854b492d6b1f687729810fcb3cdcfb2d5ba00e9e /geography/py-obspy | |
parent | 5c191fb48220683b81bb517d2bf15118336ac20d (diff) | |
download | pkgsrc-d0a9951bec61d55bad71bb507a4cd85a64ae6f38.tar.gz |
Apparently python3 insists that print arguments are inside parens
should fix PLIST issues on py34 & py35
Diffstat (limited to 'geography/py-obspy')
-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}/ \ |