diff options
author | tron <tron> | 2001-01-11 10:53:10 +0000 |
---|---|---|
committer | tron <tron> | 2001-01-11 10:53:10 +0000 |
commit | 68673427a268064f03fc331fa2f28b5802915fb6 (patch) | |
tree | 533108a4b41c6afb46f3618252bbfa98aeb3442a /mk | |
parent | ecef5d97664ae6ca37a6c4530c3d0b3a9c093710 (diff) | |
download | pkgsrc-68673427a268064f03fc331fa2f28b5802915fb6.tar.gz |
Use input redirection when invoking "bzcat" because at least the version
distributed with Solaris 8 doesn't like symbolic links.
Diffstat (limited to 'mk')
-rw-r--r-- | mk/bsd.pkg.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mk/bsd.pkg.mk b/mk/bsd.pkg.mk index 9c66b0a455f..833aff9ad81 100644 --- a/mk/bsd.pkg.mk +++ b/mk/bsd.pkg.mk @@ -1,4 +1,4 @@ -# $NetBSD: bsd.pkg.mk,v 1.639 2001/01/10 13:10:46 tron Exp $ +# $NetBSD: bsd.pkg.mk,v 1.640 2001/01/11 10:53:10 tron Exp $ # # This file is in the public domain. # @@ -335,7 +335,7 @@ PATCH_DIST_ARGS+= -C EXTRACT_SUFX?= .tar.gz .if ${EXTRACT_SUFX} == ".tar.bz2" .if exists(/usr/bin/bzcat) -BZCAT= /usr/bin/bzcat +BZCAT= /usr/bin/bzcat < .else BZCAT= ${LOCALBASE}/bin/bzcat BUILD_DEPENDS+= ${BZCAT}:../../archivers/bzip2 |