diff options
author | grant <grant@pkgsrc.org> | 2004-01-08 14:53:06 +0000 |
---|---|---|
committer | grant <grant@pkgsrc.org> | 2004-01-08 14:53:06 +0000 |
commit | 954c6ca5cd95cce59f9d08d65bd03c98062be6da (patch) | |
tree | c22c7cafe0c5d7e12e7781e1c7fc59ab082a36a6 /mk | |
parent | 655bd011cedc74f9ce7aa7e5206e4db08b352106 (diff) | |
download | pkgsrc-954c6ca5cd95cce59f9d08d65bd03c98062be6da.tar.gz |
use gzip -cd instead of gzcat(1), which doesn't always exist.
Diffstat (limited to 'mk')
-rw-r--r-- | mk/defs.SunOS.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mk/defs.SunOS.mk b/mk/defs.SunOS.mk index 44f6853e2cf..6ed14f29e05 100644 --- a/mk/defs.SunOS.mk +++ b/mk/defs.SunOS.mk @@ -1,4 +1,4 @@ -# $NetBSD: defs.SunOS.mk,v 1.74 2003/12/16 23:07:42 heinz Exp $ +# $NetBSD: defs.SunOS.mk,v 1.75 2004/01/08 14:53:06 grant Exp $ # # Variable definitions for the SunOS/Solaris operating system. @@ -35,7 +35,7 @@ GZIP?= -9 GZIP_CMD?= ${LOCALBASE}/bin/gzip -nf ${GZIP} .elif exists(/usr/bin/gzip) GUNZIP_CMD?= /usr/bin/gunzip -f -GZCAT?= /usr/bin/gzcat +GZCAT?= /usr/bin/gzip -cd GZIP?= -9 GZIP_CMD?= /usr/bin/gzip -nf ${GZIP} .endif |