Commit ee618c39cbe1cc8e67b53e95b221412385484f1d
1 parent
f64f9749
Exists in
develop
Fixing msvc build.
Showing
1 changed file
with
6 additions
and
1 deletions
Show diff stats
win/msvc-build.sh
... | ... | @@ -29,7 +29,12 @@ make all > $LOGFILE 2>&1 || die "Make failure" |
29 | 29 | make DESTDIR=.bin/package install > $LOGFILE 2>&1 || die "Install failure" |
30 | 30 | |
31 | 31 | cd .bin/package${MINGW_PREFIX} |
32 | -zip -9 -r ../../../${MINGW_PACKAGE_PREFIX}-lib3270.zip * > $LOGFILE 2>&1 || die "Zip failure" | |
32 | +zip \ | |
33 | + -9 -r \ | |
34 | + -x'*.a' \ | |
35 | + -x'*.pc' \ | |
36 | + ../../../${MINGW_PACKAGE_PREFIX}-lib3270-${MSYSTEM_CARCH}.zip * \ | |
37 | + > $LOGFILE 2>&1 || die "Zip failure" | |
33 | 38 | |
34 | 39 | |
35 | 40 | ... | ... |