diff options
author | Steve Wills <swills@FreeBSD.org> | 2012-06-10 18:42:48 +0000 |
---|---|---|
committer | Steve Wills <swills@FreeBSD.org> | 2012-06-10 18:42:48 +0000 |
commit | 63d09c9c9b84669faec2c94444cb4ba43ca65ec0 (patch) | |
tree | 897864e11191cee1fd0515a4af0b3aa5ab400840 /misc/xiphos | |
parent | 17363b49d179d9fa2c2ddac86f2a984508354712 (diff) | |
download | ports-63d09c9c9b84669faec2c94444cb4ba43ca65ec0.tar.gz ports-63d09c9c9b84669faec2c94444cb4ba43ca65ec0.zip |
- Convert all remaining instances of BUILD_DEPENDS=${RUN_DEPENDS} or
RUN_DEPENDS=${BUILD_DEPENDS} to use := which portlint has warned
about for a while.
PR: ports/168208
Approved by: portmgr (miwi)
Notes
Notes:
svn path=/head/; revision=298970
Diffstat (limited to 'misc/xiphos')
-rw-r--r-- | misc/xiphos/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/xiphos/Makefile b/misc/xiphos/Makefile index effdb0869145..8e9fbaffcbfa 100644 --- a/misc/xiphos/Makefile +++ b/misc/xiphos/Makefile @@ -17,7 +17,7 @@ COMMENT= A bible interface utilizing the sword framework LICENSE= GPLv2 RUN_DEPENDS= ${LOCALBASE}/lib/libsword-1.6.2.so:${PORTSDIR}/misc/sword -BUILD_DEPENDS= ${RUN_DEPENDS} \ +BUILD_DEPENDS:= ${RUN_DEPENDS} \ docbook2html:${PORTSDIR}/textproc/docbook-utils \ gnome-doc-tool:${PORTSDIR}/textproc/gnome-doc-utils \ nspr>=4.8:${PORTSDIR}/devel/nspr |