diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2007-04-09 14:55:12 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2007-04-09 14:55:12 +0000 |
commit | b4eeba5779b80aabe38608c88c6f14fe43a18595 (patch) | |
tree | 8cba820cd81fa353d7adc2855d17704aa629bc46 /distrib/i386/common/Makefile.inc | |
parent | 4640939a5869542e27d79b594a5c48d5cce10aa8 (diff) |
Add -n to gzip flags. Save a few bytes since we no longer save
the uncompressed filename in the gzip header.
Diffstat (limited to 'distrib/i386/common/Makefile.inc')
-rw-r--r-- | distrib/i386/common/Makefile.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/distrib/i386/common/Makefile.inc b/distrib/i386/common/Makefile.inc index 7d17d87dcdc..387a593720a 100644 --- a/distrib/i386/common/Makefile.inc +++ b/distrib/i386/common/Makefile.inc @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.inc,v 1.15 2004/11/25 22:02:08 deraadt Exp $ +# $OpenBSD: Makefile.inc,v 1.16 2007/04/09 14:55:11 millert Exp $ TOP= ${.CURDIR}/.. @@ -56,7 +56,7 @@ bsd.gz: bsd.rd cp bsd.rd bsd.strip strip bsd.strip strip -R .comment bsd.strip - gzip -c9 bsd.strip > bsd.gz + gzip -c9n bsd.strip > bsd.gz bsd.rd: ${IMAGE} bsd rdsetroot cp bsd bsd.rd |