diff options
author | grant <grant@pkgsrc.org> | 2004-03-27 08:04:48 +0000 |
---|---|---|
committer | grant <grant@pkgsrc.org> | 2004-03-27 08:04:48 +0000 |
commit | cc53c502cf935aa757c4528befb418dc02918555 (patch) | |
tree | dfae57aa7885421b566f643d51bdd4c74bf0863e /mk/defs.SunOS.mk | |
parent | 14c8d0e26dfcfb77fd3c7e55261f94ec46d46bc0 (diff) | |
download | pkgsrc-cc53c502cf935aa757c4528befb418dc02918555.tar.gz |
don't assume that /usr/bin/gunzip will exist, use /usr/bin/gzip -d
instead.
Diffstat (limited to 'mk/defs.SunOS.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 2609287a9a1..7ddec445a2f 100644 --- a/mk/defs.SunOS.mk +++ b/mk/defs.SunOS.mk @@ -1,4 +1,4 @@ -# $NetBSD: defs.SunOS.mk,v 1.81 2004/03/11 22:57:22 agc Exp $ +# $NetBSD: defs.SunOS.mk,v 1.82 2004/03/27 08:04:48 grant Exp $ # # Variable definitions for the SunOS/Solaris operating system. @@ -34,7 +34,7 @@ GZCAT?= ${LOCALBASE}/bin/zcat GZIP?= -9 GZIP_CMD?= ${LOCALBASE}/bin/gzip -nf ${GZIP} .elif exists(/usr/bin/gzip) -GUNZIP_CMD?= /usr/bin/gunzip -f +GUNZIP_CMD?= /usr/bin/gzip -df GZCAT?= /usr/bin/gzip -cd GZIP?= -9 GZIP_CMD?= /usr/bin/gzip -nf ${GZIP} |