diff options
author | eadler <eadler@FreeBSD.org> | 2014-07-01 15:04:47 +0800 |
---|---|---|
committer | eadler <eadler@FreeBSD.org> | 2014-07-01 15:04:47 +0800 |
commit | e26507284a73d3ef389f6ddfa28b4c45fff59b83 (patch) | |
tree | c9293086bc7f7c3d0b0e223b497e7465b5e0717b /games | |
parent | 7cb4239610c8d554e9dff26814d97bd896aa53d0 (diff) | |
download | freebsd-ports-gnome-e26507284a73d3ef389f6ddfa28b4c45fff59b83.tar.gz freebsd-ports-gnome-e26507284a73d3ef389f6ddfa28b4c45fff59b83.tar.zst freebsd-ports-gnome-e26507284a73d3ef389f6ddfa28b4c45fff59b83.zip |
multiple: avoid RUN_DEPENDS=${BUILD_DEPENDS} anti-pattern
The ports infrastructure may insert additional content into the
BUILD_DEPENDS variable which is not supposed to be a run depend.
Approved by: portmgr (bapt)
Diffstat (limited to 'games')
-rw-r--r-- | games/crafty-open-large/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/games/crafty-open-large/Makefile b/games/crafty-open-large/Makefile index fa73d854a207..63b708251077 100644 --- a/games/crafty-open-large/Makefile +++ b/games/crafty-open-large/Makefile @@ -13,7 +13,7 @@ MAINTAINER= ports@FreeBSD.org COMMENT= The large opening book for crafty BUILD_DEPENDS= crafty:${PORTSDIR}/games/crafty -RUN_DEPENDS= ${BUILD_DEPENDS} +RUN_DEPENDS= crafty:${PORTSDIR}/games/crafty DIST_SUBDIR= crafty USES= zip |