diff options
author | adamw <adamw@FreeBSD.org> | 2014-02-14 04:58:19 +0800 |
---|---|---|
committer | adamw <adamw@FreeBSD.org> | 2014-02-14 04:58:19 +0800 |
commit | 3469f6f0087243281e66e96673cfed89912c96bf (patch) | |
tree | de4dd91bf09ee23a51cd47a68fca9e46675ce923 | |
parent | 6fb9d276ddbc26591b8180b495d65ed65ecae820 (diff) | |
download | freebsd-ports-gnome-3469f6f0087243281e66e96673cfed89912c96bf.tar.gz freebsd-ports-gnome-3469f6f0087243281e66e96673cfed89912c96bf.tar.zst freebsd-ports-gnome-3469f6f0087243281e66e96673cfed89912c96bf.zip |
TIL option_XYZ_OFF
-rw-r--r-- | shells/bash-completion/Makefile | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/shells/bash-completion/Makefile b/shells/bash-completion/Makefile index e44c079403ac..569e4964e91a 100644 --- a/shells/bash-completion/Makefile +++ b/shells/bash-completion/Makefile @@ -25,13 +25,8 @@ USES= gmake SUB_FILES= pkg-message SUB_LIST+= RUNFILE=${DATADIR}/bash_completion.sh -.include <bsd.port.options.mk> - -.if ${PORT_OPTIONS:MBASH_DEVEL} -RUN_DEPENDS=bash:${PORTSDIR}/shells/bash-devel -.else -RUN_DEPENDS=bash:${PORTSDIR}/shells/bash -.endif +BASH_DEVEL_RUN_DEPENDS= bash:${PORTSDIR}/shells/bash-devel +BASH_DEVEL_RUN_DEPENDS_OFF= bash:${PORTSDIR}/shells/bash post-patch: @${REINPLACE_CMD} -e 's|FLAC|&\|flv\|FLV|;' ${WRKSRC}/bash_completion |