diff options
author | MANTANI Nobutaka <nobutaka@FreeBSD.org> | 2015-03-26 00:10:04 +0800 |
---|---|---|
committer | MANTANI Nobutaka <nobutaka@FreeBSD.org> | 2015-03-26 00:10:04 +0800 |
commit | 5dd4c15129e813e817b06f4278ae09420c1bb165 (patch) | |
tree | 773c21333b6ad6bb6610e993eb97184d660489c2 /net/dshell | |
parent | 3b38875bc788608d5185c2fbfccb61a867ccf797 (diff) | |
download | freebsd-ports-gnome-5dd4c15129e813e817b06f4278ae09420c1bb165.tar.gz freebsd-ports-gnome-5dd4c15129e813e817b06f4278ae09420c1bb165.tar.zst freebsd-ports-gnome-5dd4c15129e813e817b06f4278ae09420c1bb165.zip |
Fix variable assignment of RUN_DEPENDS.
Pointed out by: adamw
Diffstat (limited to 'net/dshell')
-rw-r--r-- | net/dshell/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/dshell/Makefile b/net/dshell/Makefile index 184ed18d4403..124345963470 100644 --- a/net/dshell/Makefile +++ b/net/dshell/Makefile @@ -17,7 +17,7 @@ BUILD_DEPENDS= bash:${PORTSDIR}/shells/bash \ ${PYTHON_PKGNAMEPREFIX}dpkt>0:${PORTSDIR}/net/py-dpkt \ ${PYTHON_PKGNAMEPREFIX}ipy>0:${PORTSDIR}/net-mgmt/py-ipy \ ${PYTHON_PKGNAMEPREFIX}pypcap>0:${PORTSDIR}/net/py-pypcap -RUN_DEPENDS= ${BUILD_DEPENDS} +RUN_DEPENDS:= ${BUILD_DEPENDS} USE_GITHUB= yes USES= python |