summaryrefslogtreecommitdiff
path: root/distrib/hp300/ramdisk/Makefile
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 /distrib/hp300/ramdisk/Makefile
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 'distrib/hp300/ramdisk/Makefile')
-rw-r--r--distrib/hp300/ramdisk/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/distrib/hp300/ramdisk/Makefile b/distrib/hp300/ramdisk/Makefile
index 2c4d467ccda..45e424f8bbf 100644
--- a/distrib/hp300/ramdisk/Makefile
+++ b/distrib/hp300/ramdisk/Makefile
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile,v 1.20 2006/02/15 22:00:59 pvalchev Exp $
+# $OpenBSD: Makefile,v 1.21 2007/02/16 16:56:22 tsi Exp $
# $NetBSD: Makefile,v 1.1 1995/07/18 04:13:06 briggs Exp $
TOP= ${.CURDIR}/..
@@ -17,13 +17,13 @@ VND_CRDEV= /dev/r${VND}c
PID!= echo $$$$
REALIMAGE!= echo /var/tmp/image.${PID}
-GZIP?= gzip
+GZIPCMD?= gzip
GZIPFLAGS?= -9f
all: ${CBIN} ${IMAGE} bsd.rd
install: bsd.rd
- ${GZIP} -c ${GZIPFLAGS} bsd.rd > ${DESTDIR}/snapshot/bsd.rd
+ ${GZIPCMD} -c ${GZIPFLAGS} bsd.rd > ${DESTDIR}/snapshot/bsd.rd
.include "Makefile.inc"