diff options
author | sf <sf@FreeBSD.org> | 2001-06-29 14:26:38 +0000 |
---|---|---|
committer | sf <sf@FreeBSD.org> | 2001-06-29 14:26:38 +0000 |
commit | f89e894dfd9754eb88907030e2601d417eb33e9a (patch) | |
tree | eefbbe155b80643889c8aa13228dcce65132d65f /Mk | |
parent | 1e470c4ddc4f3da08adee69be0b9ac405fa40b0a (diff) | |
download | FreeBSD-ports-f89e894dfd9754eb88907030e2601d417eb33e9a.zip FreeBSD-ports-f89e894dfd9754eb88907030e2601d417eb33e9a.tar.gz |
BUILD_DEPENDS on bzip2 only if ${OSVERSION} < 500021.
Approved by: portmgr
Diffstat (limited to '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 6e849d1..4644673 100644 --- a/Mk/bsd.port.mk +++ b/Mk/bsd.port.mk @@ -766,7 +766,7 @@ MANCOMPRESSED?= yes MANCOMPRESSED?= no .endif -.if defined(USE_BZIP2) +.if defined(USE_BZIP2) && ${OSVERSION} < 500021 BUILD_DEPENDS+= bzip2:${PORTSDIR}/archivers/bzip2 .endif .if defined(USE_ZIP) |