diff options
Diffstat (limited to 'distrib/alpha')
-rw-r--r-- | distrib/alpha/bsd.rd/Makefile | 6 | ||||
-rw-r--r-- | distrib/alpha/common/Makefile.inc | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/distrib/alpha/bsd.rd/Makefile b/distrib/alpha/bsd.rd/Makefile index e6b8bcf14ee..34261cfe16b 100644 --- a/distrib/alpha/bsd.rd/Makefile +++ b/distrib/alpha/bsd.rd/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.7 2002/06/09 05:53:53 todd Exp $ +# $OpenBSD: Makefile,v 1.8 2007/02/16 16:56:22 tsi Exp $ TOP= ${.CURDIR}/.. @@ -15,7 +15,7 @@ PID!= echo $$$$ REALIMAGE!= echo /var/tmp/image.${PID} STRIP?= strip -GZIP?= gzip +GZIPCMD?= gzip GZIPFLAGS?= -9f INSTALLBOOT?= /usr/mdec/installboot -v @@ -42,7 +42,7 @@ NEWFSARGS_FD= -i 524288 -c 80 bsd.rd: bsd.rd_unz objcopy -Sg -R .comment bsd.rd_unz bsd.strip ${STRIP} bsd.strip - ${GZIP} -c ${GZIPFLAGS} bsd.strip > bsd.rd + ${GZIPCMD} -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 4210ad64b65..42022b7ce98 100644 --- a/distrib/alpha/common/Makefile.inc +++ b/distrib/alpha/common/Makefile.inc @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.inc,v 1.12 2005/08/29 03:28:51 deraadt Exp $ +# $OpenBSD: Makefile.inc,v 1.13 2007/02/16 16:56:22 tsi Exp $ TOP= ${.CURDIR}/.. @@ -15,7 +15,7 @@ PID!= echo $$$$ REALIMAGE!= echo /var/tmp/image.${PID} STRIP?= strip -GZIP?= gzip +GZIPCMD?= gzip GZIPFLAGS?= -9f INSTALLBOOT?= /usr/mdec/installboot -v @@ -66,7 +66,7 @@ ${FLOPPY}: bsd.gz bsd.gz: bsd.rd objcopy -Sg -R .comment bsd.rd bsd.strip ${STRIP} bsd.strip - ${GZIP} -c ${GZIPFLAGS} bsd.strip > bsd.gz + ${GZIPCMD} -c ${GZIPFLAGS} bsd.strip > bsd.gz bsd.rd: bsd ${IMAGE} ${RDSETROOT} cp bsd bsd.rd |