From 78d59e370de8db9b6a13d46fec3544a02f80a0bd Mon Sep 17 00:00:00 2001 From: "H. Peter Anvin" Date: Sat, 25 Feb 2012 22:49:25 -0800 Subject: [PATCH] misc/release: do xz compression with -9e Use the -9e compression level when doing xz compression. It only saves a few kilobytes, but since our files are pretty small it doesn't really take all that much time. Signed-off-by: H. Peter Anvin --- misc/release | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/misc/release b/misc/release index e530ac69..0abaf77a 100755 --- a/misc/release +++ b/misc/release @@ -56,9 +56,9 @@ rm -f ../nasm-"$version".zip ../nasm-"$version"-xdoc.zip # Create tarfile (Unix convention: file includes prefix) mv nasm nasm-"$version" tar cvvf nasm-"$version".tar nasm-"$version" -xz -9k nasm-"$version".tar -bzip2 -9k nasm-"$version".tar -gzip -9 nasm-"$version".tar +xz -9ek nasm-"$version".tar +bzip2 -9k nasm-"$version".tar +gzip -9 nasm-"$version".tar mv nasm-"$version".tar.gz nasm-"$version".tar.bz2 nasm-"$version".tar.xz .. # Create zipfile (DOS convention: no prefix, convert file endings) @@ -85,9 +85,9 @@ find nasm-"$version"/doc -type d -exec rmdir '{}' \; 2>/dev/null || true # Create doc tarfile tar cvvf nasm-"$version"-xdoc.tar nasm-"$version"/doc -xz -9k nasm-"$version"-xdoc.tar -bzip2 -9k nasm-"$version"-xdoc.tar -gzip -9 nasm-"$version"-xdoc.tar +xz -9ek nasm-"$version"-xdoc.tar +bzip2 -9k nasm-"$version"-xdoc.tar +gzip -9 nasm-"$version"-xdoc.tar mv nasm-"$version"-xdoc.tar.gz nasm-"$version"-xdoc.tar.bz2 nasm-"$version"-xdoc.tar.xz .. # Create doc zipfile (DOS convention: no prefix, convert file endings) -- 2.11.4.GIT