diff options
author | 2006-07-13 02:19:28 +0000 | |
---|---|---|
committer | 2006-07-13 02:19:28 +0000 | |
commit | 80174013ee3b69cef694c029745f0ceb33eef2c9 (patch) | |
tree | 98f052b6a4a77920d9616c54bfeadd4d4e08ccbd | |
parent | sync (diff) | |
download | wireguard-openbsd-80174013ee3b69cef694c029745f0ceb33eef2c9.tar.xz wireguard-openbsd-80174013ee3b69cef694c029745f0ceb33eef2c9.zip |
remove the -9 from gzip. Huge performance hit for a trivial (<1%)
reduction in file set size, not worth it. "Go for it", deraadt@
-rw-r--r-- | distrib/sets/maketars | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/distrib/sets/maketars b/distrib/sets/maketars index f898e264b55..5e79ed09af3 100644 --- a/distrib/sets/maketars +++ b/distrib/sets/maketars @@ -1,5 +1,5 @@ #!/bin/sh -# $OpenBSD: maketars,v 1.17 2004/09/02 19:55:36 millert Exp $ +# $OpenBSD: maketars,v 1.18 2006/07/13 02:19:28 nick Exp $ # # Copyright (c) 2001 Theo de Raadt # All rights reserved. @@ -52,6 +52,6 @@ cd $fsdir for i in base comp etc game man misc; do echo -n "$i: " cat ${lists}/$i/mi ${lists}/$i/md.${arch} | sort | \ - pax -w -d | gzip -9 > ${tardir}/$i${RELEASE}.tgz + pax -w -d | gzip > ${tardir}/$i${RELEASE}.tgz echo "done." done |