diff options
Diffstat (limited to 'buildall.sh')
-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 .. |