diff options
author | woodsb02 <woodsb02@FreeBSD.org> | 2017-06-07 22:37:28 +0800 |
---|---|---|
committer | woodsb02 <woodsb02@FreeBSD.org> | 2017-06-07 22:37:28 +0800 |
commit | c3a4ff710ab969fc538aca6b4934c36f55c8e2a0 (patch) | |
tree | ea2cdc288bfe06cec463cfc85008aeccde57ab5f /security | |
parent | e049dd8e9e6a268bc77c3d47f3ad444414b54a69 (diff) | |
download | freebsd-ports-gnome-c3a4ff710ab969fc538aca6b4934c36f55c8e2a0.tar.gz freebsd-ports-gnome-c3a4ff710ab969fc538aca6b4934c36f55c8e2a0.tar.zst freebsd-ports-gnome-c3a4ff710ab969fc538aca6b4934c36f55c8e2a0.zip |
Remove superfluous Makefile variable assignment modifiers in slave ports
Diffstat (limited to 'security')
-rw-r--r-- | security/py3-cryptography/Makefile | 4 | ||||
-rw-r--r-- | security/py3-openssl/Makefile | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/security/py3-cryptography/Makefile b/security/py3-cryptography/Makefile index f2074298699d..7a91f24d21f2 100644 --- a/security/py3-cryptography/Makefile +++ b/security/py3-cryptography/Makefile @@ -3,8 +3,8 @@ MASTERDIR= ${.CURDIR}/../py-cryptography -BUILD_DEPENDS?= ${PYTHON_PKGNAMEPREFIX}cffi>=1.4.1:devel/py3-cffi -RUN_DEPENDS?= ${PYTHON_PKGNAMEPREFIX}six>=1.4.1:devel/py3-six \ +BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}cffi>=1.4.1:devel/py3-cffi +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>=1.4.1:devel/py3-six \ ${PYTHON_PKGNAMEPREFIX}pyasn1>=0.1.8:devel/py3-pyasn1 \ ${PYTHON_PKGNAMEPREFIX}cffi>=1.1.0:devel/py3-cffi \ ${PYTHON_PKGNAMEPREFIX}idna>=2.0:dns/py3-idna diff --git a/security/py3-openssl/Makefile b/security/py3-openssl/Makefile index 872384f85553..5c628d6a6e88 100644 --- a/security/py3-openssl/Makefile +++ b/security/py3-openssl/Makefile @@ -3,7 +3,7 @@ MASTERDIR= ${.CURDIR}/../py-openssl -RUN_DEPENDS?= ${PYTHON_PKGNAMEPREFIX}cryptography>=0.2.1:security/py3-cryptography \ +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}cryptography>=0.2.1:security/py3-cryptography \ ${PYTHON_PKGNAMEPREFIX}six>=1.5.2:devel/py3-six USES= cpe python:3.3+ |