diff options
author | wiz <wiz@pkgsrc.org> | 2022-05-12 08:20:36 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2022-05-12 08:20:36 +0000 |
commit | a8f00aed7b8775fd4c86c4a9a0c29ea795065992 (patch) | |
tree | d4263e5ee40b44f4fddf8c8821dc032e5b1d1d71 /time/py-tempora | |
parent | 7bc1f4a6e89b1e5921f7244b04fb84b70c60c24a (diff) | |
download | pkgsrc-a8f00aed7b8775fd4c86c4a9a0c29ea795065992.tar.gz |
*: fix == vs. != confusion
Reported by adam
Diffstat (limited to 'time/py-tempora')
-rw-r--r-- | time/py-tempora/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/time/py-tempora/Makefile b/time/py-tempora/Makefile index 676e07ec9b0..382a0ebf44f 100644 --- a/time/py-tempora/Makefile +++ b/time/py-tempora/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.16 2022/05/12 08:05:28 wiz Exp $ +# $NetBSD: Makefile,v 1.17 2022/05/12 08:20:36 wiz Exp $ DISTNAME= tempora-1.14.1 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} @@ -22,7 +22,7 @@ PYTHON_VERSIONED_DEPENDENCIES+= setuptools_scm:build .include "../../lang/python/pyversion.mk" -.if ${_PYTHON_VERSION} == 27 +.if ${_PYTHON_VERSION} != 27 # freezegun is only available for python 3 TEST_DEPENDS+= ${PYPKGPREFIX}-freezegun-[0-9]*:../../devel/py-freezegun .endif |