diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2019-04-28 16:26:08 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2019-04-28 16:26:08 +0000 |
commit | 7654fe8c61a6849cd04f4315c6763f0acce7548a (patch) | |
tree | b4a125babc721236219c656165b46e1bb2826b91 /distrib/hppa | |
parent | 1c0a19872cea3d4e2d7bc04ad91c55ff32eb04cc (diff) |
incorporate GZIPFLAGS into place everywhere
Diffstat (limited to 'distrib/hppa')
-rw-r--r-- | distrib/hppa/ramdisk/Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/distrib/hppa/ramdisk/Makefile b/distrib/hppa/ramdisk/Makefile index e48fd8fb8c2..1ba07e164e2 100644 --- a/distrib/hppa/ramdisk/Makefile +++ b/distrib/hppa/ramdisk/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.38 2019/04/28 15:21:49 deraadt Exp $ +# $OpenBSD: Makefile,v 1.39 2019/04/28 16:26:07 deraadt Exp $ ARCHDIR= ${.CURDIR}/.. SRCDIR= ${.CURDIR}/../../.. @@ -24,7 +24,6 @@ BOOT?= ${DESTDIR}/usr/mdec/boot CDBOOT?= ${DESTDIR}/usr/mdec/cdboot STRIPOPTS?= -R .SUNW_ctf -GZIPFLAGS?= -9n DISKTYPE= rdroot MAKEFSARGS_RD= -o disklabel=${DISKTYPE},minfree=0,density=4096 @@ -57,7 +56,7 @@ bsd.rd: obsd ${IMAGE} strip ${STRIPOPTS} bsd.rd bsd: bsd.rd - (cat bsd.rd ; dd if=/dev/zero count=1) | gzip ${GZIPFLAGS} > bsd + (cat bsd.rd ; dd if=/dev/zero count=1) | gzip -9nv > bsd ${IMAGE}: instbin rm -rf $@.d |