diff options
author | Marc Aurele La France <tsi@cvs.openbsd.org> | 2007-02-16 16:56:23 +0000 |
---|---|---|
committer | Marc Aurele La France <tsi@cvs.openbsd.org> | 2007-02-16 16:56:23 +0000 |
commit | 912aa975c3d0f148024495ea41c8c69f2499ed9d (patch) | |
tree | 6d9582c9540611e31d81e0fab6efeb6e3dc32d3e /distrib/hppa/ramdisk | |
parent | 7d02afca6a0e287ca2b289d05db4ddfd2705c842 (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/hppa/ramdisk')
-rw-r--r-- | distrib/hppa/ramdisk/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/distrib/hppa/ramdisk/Makefile b/distrib/hppa/ramdisk/Makefile index e000b977037..91e11cb2719 100644 --- a/distrib/hppa/ramdisk/Makefile +++ b/distrib/hppa/ramdisk/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.7 2005/03/25 22:03:10 mickey Exp $ +# $OpenBSD: Makefile,v 1.8 2007/02/16 16:56:22 tsi Exp $ CBIN= instbin ARCHDIR= ${.CURDIR}/.. @@ -35,7 +35,7 @@ BOOT?= ${DESTDIR}/usr/mdec/boot CDBOOT?= ${DESTDIR}/usr/mdec/cdboot STRIP?= strip -GZIP?= gzip +GZIPCMD?= gzip GZIPFLAGS?= -9 # old format, minfree, opt, b/i trks, sects, cpg @@ -74,7 +74,7 @@ bsd.rd: obsd ${IMAGE} ${RDSETROOT} @${STRIP} bsd.rd bsd: bsd.rd - ${GZIP} ${GZIPFLAGS} < bsd.rd > bsd + ${GZIPCMD} ${GZIPFLAGS} < bsd.rd > bsd ${RDSETROOT}: ${.CURDIR}/../../common/${RDSETROOT}.c ${HOSTCC} ${HOSTCCFLAGS} -o ${RDSETROOT} $< |