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/amd64/common | |
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/amd64/common')
-rw-r--r-- | distrib/amd64/common/Makefile.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/distrib/amd64/common/Makefile.inc b/distrib/amd64/common/Makefile.inc index 3053ac1bda2..8c0c76e27c9 100644 --- a/distrib/amd64/common/Makefile.inc +++ b/distrib/amd64/common/Makefile.inc @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile.inc,v 1.3 2004/02/27 16:53:24 deraadt Exp $ +# $OpenBSD: Makefile.inc,v 1.4 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 |