diff options
author | Akinori MUSHA <knu@FreeBSD.org> | 2001-08-01 09:01:48 +0000 |
---|---|---|
committer | Akinori MUSHA <knu@FreeBSD.org> | 2001-08-01 09:01:48 +0000 |
commit | edc6033a2d43471c230e0ae6f33bcd947eb4e77d (patch) | |
tree | 98d761ee88dede4633d7d060eb00a342fe0cdc30 /Mk | |
parent | Do not create ${PREFIX}/lib/libdb.so and ${PREFIX}/lib/libdb_cxx.so (diff) |
Do not build-depend on archivers/bzip2 if the system has
/usr/bin/bzip2, now that bzip2 is MFC'ed to 4-STABLE.
Approved by: portmgr
Notes
Notes:
svn path=/head/; revision=45690
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 9a65bdfe19d8..91ff2f04f0ee 100644 --- a/Mk/bsd.port.mk +++ b/Mk/bsd.port.mk @@ -773,7 +773,7 @@ MANCOMPRESSED?= yes MANCOMPRESSED?= no .endif -.if defined(USE_BZIP2) && ${OSVERSION} < 500021 +.if defined(USE_BZIP2) && !exists(/usr/bin/bzip2) BUILD_DEPENDS+= bzip2:${PORTSDIR}/archivers/bzip2 .endif .if defined(USE_ZIP) |