summaryrefslogtreecommitdiff
path: root/Mk/Uses/erlang.mk
diff options
context:
space:
mode:
authorBaptiste Daroussin <bapt@FreeBSD.org>2016-03-27 01:23:25 +0000
committerBaptiste Daroussin <bapt@FreeBSD.org>2016-03-27 01:23:25 +0000
commit421767bd88527645cd4058a75e4ccfc620acf467 (patch)
treefc37977964ca6fcbf75112d387272790e3517c83 /Mk/Uses/erlang.mk
parent- Update to 3.11.1 (diff)
Remove the now unneeded ${PORTSDIR} from dependency definition in
The infrastructure Makefiles PR: 206569 Exp run by: antoine Differential Revision: D5047
Notes
Notes: svn path=/head/; revision=411970
Diffstat (limited to 'Mk/Uses/erlang.mk')
-rw-r--r--Mk/Uses/erlang.mk12
1 files changed, 6 insertions, 6 deletions
diff --git a/Mk/Uses/erlang.mk b/Mk/Uses/erlang.mk
index 7e83329bcf61..8703d8e8678d 100644
--- a/Mk/Uses/erlang.mk
+++ b/Mk/Uses/erlang.mk
@@ -38,23 +38,23 @@ ERL_DOCS?= README*
# VERSION is used in every Erlang pkg-plist
PLIST_SUB+= VERSION="${PORTVERSION}"
-BUILD_DEPENDS+= erl:${PORTSDIR}/lang/erlang
-RUN_DEPENDS+= erl:${PORTSDIR}/lang/erlang
+BUILD_DEPENDS+= erl:lang/erlang
+RUN_DEPENDS+= erl:lang/erlang
.if ${erlang_ARGS:Mrebar}
-BUILD_DEPENDS+= rebar>=0:${PORTSDIR}/devel/rebar
+BUILD_DEPENDS+= rebar>=0:devel/rebar
.endif
.if ${erlang_ARGS:Mrebar3}
-BUILD_DEPENDS+= rebar3>=0:${PORTSDIR}/devel/rebar3
+BUILD_DEPENDS+= rebar3>=0:devel/rebar3
.endif
.for depend in ${ERL_BUILD_DEPS}
-BUILD_DEPENDS+= ${depend:T}>=0:${PORTSDIR}/${depend}
+BUILD_DEPENDS+= ${depend:T}>=0:${depend}
.endfor
.for depend in ${ERL_RUN_DEPS}
-RUN_DEPENDS+= ${depend:T}>=0:${PORTSDIR}/${depend}
+RUN_DEPENDS+= ${depend:T}>=0:${depend}
.endfor
.if ${erlang_ARGS:Mrebar}