summaryrefslogtreecommitdiff
path: root/etc
diff options
context:
space:
mode:
authorMarc Aurele La France <tsi@cvs.openbsd.org>2007-02-16 16:56:23 +0000
committerMarc Aurele La France <tsi@cvs.openbsd.org>2007-02-16 16:56:23 +0000
commit912aa975c3d0f148024495ea41c8c69f2499ed9d (patch)
tree6d9582c9540611e31d81e0fab6efeb6e3dc32d3e /etc
parent7d02afca6a0e287ca2b289d05db4ddfd2705c842 (diff)
s/GZIP/GZIPCMD/g in `make release` structure to avoid conflict with gzip's
use of a GZIP environment variable for extra command flags. ok deraadt@, millert@
Diffstat (limited to 'etc')
-rw-r--r--etc/Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/etc/Makefile b/etc/Makefile
index 03c99a8d25b..1069bbab116 100644
--- a/etc/Makefile
+++ b/etc/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.246 2007/01/31 08:32:16 pyr Exp $
+# $OpenBSD: Makefile,v 1.247 2007/02/16 16:56:22 tsi Exp $
TZDIR= /usr/share/zoneinfo
LOCALTIME= Canada/Mountain
@@ -35,11 +35,11 @@ PCS= pcs750.bin
# (pmax or slower :-)). This way you get only tar'ed snap files and you can
# gzip them on a faster machine
.ifndef NOGZIP
-GZIP?= gzip
+GZIPCMD?= gzip
GZIPFLAGS?= -9
GZIPEXT?= .gz
.else
-GZIP= cat
+GZIPCMD= cat
GZIPFLAGS=
GZIPEXT=
.endif
@@ -340,7 +340,7 @@ distrib:
DHSIZE=1024 1536 2048 3072 4096
update-moduli:
( \
- echo '# $$OpenBSD: Makefile,v 1.246 2007/01/31 08:32:16 pyr Exp $$'; \
+ echo '# $$OpenBSD: Makefile,v 1.247 2007/02/16 16:56:22 tsi Exp $$'; \
echo '# Time Type Tests Tries Size Generator Modulus'; \
( for i in ${DHSIZE}; do \
ssh-keygen -b $$i -G /dev/stdout; \