diff options
author | H. Peter Anvin <hpa@zytor.com> | 2009-09-23 09:54:10 -0700 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2009-09-23 09:54:10 -0700 |
commit | 5f3bd5dbf09c4ff4a9d35d53dff2705fc2afc1b6 (patch) | |
tree | b594927c40ffe57fabbdf2c75802ebacf9ced650 /misc | |
parent | 6bd3f0bd9cee8dcb72c15b1e7d4a5e0649073233 (diff) | |
download | nasm-5f3bd5dbf09c4ff4a9d35d53dff2705fc2afc1b6.tar.gz nasm-5f3bd5dbf09c4ff4a9d35d53dff2705fc2afc1b6.tar.bz2 nasm-5f3bd5dbf09c4ff4a9d35d53dff2705fc2afc1b6.zip |
misc/release: *.ico are binary files
Zip needs to know which files to treat as binary, so tell it *.ico are
binary files.
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'misc')
-rwxr-xr-x | misc/release | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/misc/release b/misc/release index b5c43f8..9b8cffa 100755 --- a/misc/release +++ b/misc/release @@ -61,8 +61,8 @@ mv nasm-"$version".tar.gz nasm-"$version".tar.bz2 .. # Create zipfile (DOS convention: no prefix, convert file endings) cd nasm-"$version" -zip -9Dlr ../../nasm-"$version".zip * -x \*.jpg -x \*.zip # Text files -# zip -9Dgr ../../nasm-"$version".zip * -i \*.jpg -i \*.zip # Binary files +zip -9Dlr ../../nasm-"$version".zip * -x \*.jpg -x \*.zip -x \*.ico # Text files +zip -9Dgr ../../nasm-"$version".zip * -i \*.jpg -i \*.zip -i \*.ico # Binary files cd .. # Record what we have already generated |