diff options
author | FUJISHIMA Satsuki <sf@FreeBSD.org> | 2001-06-29 14:26:38 +0000 |
---|---|---|
committer | FUJISHIMA Satsuki <sf@FreeBSD.org> | 2001-06-29 14:26:38 +0000 |
commit | 2f541dec7449062a4e3d2fcb7302c51c367c225a (patch) | |
tree | e7f03e5367f17c6f37a8830c9595c54668f7efe5 /Mk/bsd.port.mk | |
parent | Update fox-xunicode to 0.99.172. Somehow this has been sitting in my (diff) |
BUILD_DEPENDS on bzip2 only if ${OSVERSION} < 500021.
Approved by: portmgr
Notes
Notes:
svn path=/head/; revision=44559
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 6e849d1b72ff..4644673800c3 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) |