diff options
author | pav <pav@FreeBSD.org> | 2007-04-02 22:55:29 +0000 |
---|---|---|
committer | pav <pav@FreeBSD.org> | 2007-04-02 22:55:29 +0000 |
commit | 52ccc58a87eddcf6f9572526a7adfbdc0e8cf0c4 (patch) | |
tree | 85e4f0e7caefd9939a5bc374b3dd155e7f659de6 /Mk/bsd.port.mk | |
parent | efa85a27ad2cd622f970818d2d432c791281f2b5 (diff) | |
download | FreeBSD-ports-52ccc58a87eddcf6f9572526a7adfbdc0e8cf0c4.zip FreeBSD-ports-52ccc58a87eddcf6f9572526a7adfbdc0e8cf0c4.tar.gz |
- Overhaul bsd.tcl.mk: most importantly, change the semantics to match
USE_PERL5* macros:
USE_TCL, USE_TK: lib depends
USE_TCL_BUILD, USE_TK_BUILD: build depends
USE_TCL_RUN, USE_TK_RUN: run depends
See comment block in bsd.tcl.mk for details
PR: ports/109097
Submitted by: Martin Matuska <martin@matuska.org>
Tested on: pointyhat exp-run
Diffstat (limited to 'Mk/bsd.port.mk')
-rw-r--r-- | Mk/bsd.port.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Mk/bsd.port.mk b/Mk/bsd.port.mk index c469db0..e392624 100644 --- a/Mk/bsd.port.mk +++ b/Mk/bsd.port.mk @@ -1504,7 +1504,7 @@ PERL= ${LOCALBASE}/bin/perl .include "${PORTSDIR}/Mk/bsd.ocaml.mk" .endif -.if defined(USE_TCL) || defined(USE_TCL_BUILD) || defined(USE_TK) || defined(USE_TK_BUILD) +.if defined(USE_TCL) || defined(USE_TCL_BUILD) || defined(USE_TCL_RUN) || defined(USE_TCL_WRAPPER) || defined(USE_TK) || defined(USE_TK_BUILD) || defined(USE_TK_RUN) || defined(USE_TK_WRAPPER) .include "${PORTSDIR}/Mk/bsd.tcl.mk" .endif |