diff options
author | H. Peter Anvin <hpa@zytor.com> | 2007-11-01 15:08:27 -0700 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2007-11-01 15:08:27 -0700 |
commit | f5c729203d2c8b4f955a52bbd5f939974f9f2f80 (patch) | |
tree | f6cff3e7a3fcb9a03c6cf2045ecf41fab50c2b19 | |
parent | b9218138b4ebef43fb9fb1483a4165250b02ef61 (diff) | |
download | nasm-f5c729203d2c8b4f955a52bbd5f939974f9f2f80.tar.gz nasm-f5c729203d2c8b4f955a52bbd5f939974f9f2f80.tar.bz2 nasm-f5c729203d2c8b4f955a52bbd5f939974f9f2f80.zip |
Treat info files as binary when creating xdoc distro file
info files appear to contain embedded binary information and should
therefore be treated as binary when creating zipfiles.
-rwxr-xr-x | misc/release | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/misc/release b/misc/release index 5b0435c..6bad354 100755 --- a/misc/release +++ b/misc/release @@ -88,8 +88,8 @@ mv nasm-"$version"-xdoc.tar.gz nasm-"$version"-xdoc.tar.bz2 .. # Create doc zipfile (DOS convention: no prefix, convert file endings) # (Note: generating Win .hlp files requires additional tools) cd nasm-"$version" -zip -9Dlr ../../nasm-"$version"-xdoc.zip doc -x \*.pdf -zip -9Dgr ../../nasm-"$version"-xdoc.zip doc -i \*.pdf +zip -9Dlr ../../nasm-"$version"-xdoc.zip doc -x \*.pdf -x \*.info\* +zip -9Dgr ../../nasm-"$version"-xdoc.zip doc -i \*.pdf -i \*.info\* # Clean up cd ../.. |