diff options
author | Jasper Lievisse Adriaanse <jasper@cvs.openbsd.org> | 2017-09-18 20:13:54 +0000 |
---|---|---|
committer | Jasper Lievisse Adriaanse <jasper@cvs.openbsd.org> | 2017-09-18 20:13:54 +0000 |
commit | b321962a6d373e4894b24c09022819d82c64657d (patch) | |
tree | d3d793915d45a86d91c6753ce1584d0e8172c23d /distrib/alpha | |
parent | 061f54d407412ec116f02cdfe309b086875e6ffb (diff) |
drop ${GZIPCMD} and just use 'gzip'
Diffstat (limited to 'distrib/alpha')
-rw-r--r-- | distrib/alpha/bsd.rd/Makefile | 5 | ||||
-rw-r--r-- | distrib/alpha/common/Makefile.inc | 5 |
2 files changed, 4 insertions, 6 deletions
diff --git a/distrib/alpha/bsd.rd/Makefile b/distrib/alpha/bsd.rd/Makefile index 85189a44bc4..cf2997c02ec 100644 --- a/distrib/alpha/bsd.rd/Makefile +++ b/distrib/alpha/bsd.rd/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.29 2017/09/18 20:09:34 jasper Exp $ +# $OpenBSD: Makefile,v 1.30 2017/09/18 20:13:52 jasper Exp $ TOP= ${.CURDIR}/.. @@ -6,7 +6,6 @@ TOP= ${.CURDIR}/.. IMAGE= ramdisk${REV}.fs STRIPOPTS?= -R .SUNW_ctf -R .shstrtab -GZIPCMD?= gzip GZIPFLAGS?= -9fn RAMDISK= RAMDISKBIG @@ -23,7 +22,7 @@ MAKEFSARGS_RD= -o disklabel=${DISKTYPE},minfree=0,density=8192 bsd.rd: bsd.rd_unz objcopy -Sg -R .comment bsd.rd_unz bsd.strip strip ${STRIPOPTS} bsd.strip - ${GZIPCMD} -c ${GZIPFLAGS} bsd.strip > bsd.rd + gzip -c ${GZIPFLAGS} bsd.strip > bsd.rd bsd.rd_unz: bsd ${IMAGE} rdsetroot cp bsd bsd.rd_unz diff --git a/distrib/alpha/common/Makefile.inc b/distrib/alpha/common/Makefile.inc index 95b94a6124e..6e463a60a31 100644 --- a/distrib/alpha/common/Makefile.inc +++ b/distrib/alpha/common/Makefile.inc @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.inc,v 1.34 2017/09/18 20:09:34 jasper Exp $ +# $OpenBSD: Makefile.inc,v 1.35 2017/09/18 20:13:52 jasper Exp $ TOP= ${.CURDIR}/.. @@ -15,7 +15,6 @@ PID!= echo $$$$ REALIMAGE!= echo /var/tmp/image.${PID} STRIPOPTS?= -R .SUNW_ctf -R .shstrtab -GZIPCMD?= gzip GZIPFLAGS?= -9fn INSTALLBOOT?= /usr/mdec/installboot -v @@ -65,7 +64,7 @@ ${FLOPPY}: bsd.gz bsd.gz: bsd.rd objcopy -Sg -R .comment -R .SUNW_ctf -R .shstrtab -R .shstrtab bsd.rd bsd.strip strip bsd.strip - ${GZIPCMD} -c ${GZIPFLAGS} bsd.strip > bsd.gz + gzip -c ${GZIPFLAGS} bsd.strip > bsd.gz bsd.rd: bsd ${IMAGE} rdsetroot cp bsd bsd.rd |