diff options
author | Tim Kientzle <kientzle@FreeBSD.org> | 2013-07-28 16:58:31 +0000 |
---|---|---|
committer | Tim Kientzle <kientzle@FreeBSD.org> | 2013-07-28 16:58:31 +0000 |
commit | c9bb38b87405c96fe6237e2de1fabf25ad5eedb8 (patch) | |
tree | 9048fc08f7ea3737464930ec5acc33511e9e2a88 /devel/cross-gcc | |
parent | 05fcae2f97e2a8cd692a9a9b68a5d7a6f1850b32 (diff) |
Notes
Diffstat (limited to 'devel/cross-gcc')
-rw-r--r-- | devel/cross-gcc/Makefile | 16 |
1 files changed, 4 insertions, 12 deletions
diff --git a/devel/cross-gcc/Makefile b/devel/cross-gcc/Makefile index f18cdf7cdd1e..dc9200a14d1f 100644 --- a/devel/cross-gcc/Makefile +++ b/devel/cross-gcc/Makefile @@ -22,18 +22,10 @@ LIB_DEPENDS= gmp.10:${PORTSDIR}/math/gmp \ mpfr.4:${PORTSDIR}/math/mpfr \ mpc.2:${PORTSDIR}/math/mpc -# -# Temporary hack to deal with dependencies during package builds for -# slave ports. -# -.if defined(PACKAGE_BUILDING) -BUILD_DEPENDS= ${OURTARGET}-as:${PORTSDIR}/devel/${OURTARGET}-binutils -RUN_DEPENDS= ${OURTARGET}-as:${PORTSDIR}/devel/${OURTARGET}-binutils -BROKEN= plist build broken with tinderbox/cluster -.else -BUILD_DEPENDS= ${OURTARGET}-as:${PORTSDIR}/devel/cross-binutils -RUN_DEPENDS= ${OURTARGET}-as:${PORTSDIR}/devel/cross-binutils -.endif +# If using this as a master port, override BUILD_DEPENDS and +# RUN_DEPENDS with the appropriate specific binutils port. +BUILD_DEPENDS?= ${OURTARGET}-as:${PORTSDIR}/devel/cross-binutils +RUN_DEPENDS?= ${OURTARGET}-as:${PORTSDIR}/devel/cross-binutils USE_BZIP2= yes USE_GMAKE= yes |