diff options
author | H. Peter Anvin <hpa@zytor.com> | 2008-09-03 22:58:30 +0000 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2008-09-03 22:58:30 +0000 |
commit | 974f11a56cd698955dfd39548410592d19e8670b (patch) | |
tree | 6569213b3a9c9efa43ca51c592e0999005dba05d | |
parent | 885e2ef48c2438c4f95de07ac967d4f55a0a4d49 (diff) | |
download | nasmbuild-974f11a56cd698955dfd39548410592d19e8670b.tar.gz nasmbuild-974f11a56cd698955dfd39548410592d19e8670b.tar.xz nasmbuild-974f11a56cd698955dfd39548410592d19e8670b.zip |
Don't compress cwsdmpi.exe (not sure if it is permitted or not.)
-rwxr-xr-x | buildall.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/buildall.sh b/buildall.sh index f9637d7..38bd778 100755 --- a/buildall.sh +++ b/buildall.sh @@ -68,7 +68,8 @@ build () { cd .. zip -9Dl ../nasm-$version-dos.zip nasm-$version/{COPYING,README,nasmdoc.txt,cwsdpmi.doc} zip -9Drg ../nasm-$version-dos.zip nasm-$version -i \*.exe - find nasm-$version -name \*.exe -type f -print0 | xargs -0r time upx -q --lzma --best --all-filters + find nasm-$version -name \*.exe -a -not -name cwsdpmi.exe -type f -print0 | \ + xargs -0r time upx -q --lzma --best --all-filters zip -9Dl ../nasm-$version-dos-upx.zip nasm-$version/{COPYING,README,nasmdoc.txt,cwsdpmi.doc} zip -9Drg ../nasm-$version-dos-upx.zip nasm-$version -i \*.exe cd .. |