Commit a75d4e5fb893ae56d153f6f952783d3431acbcd1
1 parent
34fa72f2
Exists in
develop
Updating ci-build.
Showing
1 changed file
with
8 additions
and
5 deletions
Show diff stats
win/ci-build.sh
... | ... | @@ -23,16 +23,16 @@ cd ${myDIR} |
23 | 23 | rm -fr ${myDIR}/.build |
24 | 24 | |
25 | 25 | # |
26 | -# Unpack lib3270 | |
26 | +# Unpack LIB3270 | |
27 | 27 | # |
28 | 28 | echo "Unpacking lib3270" |
29 | -tar -C / -Jxf mingw-lib3270.${MSYSTEM_CARCH}.tar.xz > $LOGFILE 2>&1 || die "lib3270 unpack failure" | |
29 | +tar -C / -Jxf mingw-lib3270.${MSYSTEM_CARCH}.tar.xz > $LOGFILE 2>&1 || die "Unpack lib3270 failure" | |
30 | 30 | |
31 | 31 | # |
32 | -# Unpack libv3270 | |
32 | +# Build LIBV3270 | |
33 | 33 | # |
34 | -echo "Unpacking lib3270" | |
35 | -tar -C / -Jxf mingw-libv3270.${MSYSTEM_CARCH}.tar.xz > $LOGFILE 2>&1 || die "libv3270 unpack failure" | |
34 | +echo "Unpacking libv3270" | |
35 | +tar -C / -Jxf mingw-libv3270.tar.xz > $LOGFILE 2>&1 || die "Unpack libv3270 failure" | |
36 | 36 | |
37 | 37 | # |
38 | 38 | # Build PW3270 |
... | ... | @@ -44,5 +44,8 @@ cd ${myDIR} |
44 | 44 | make clean > $LOGFILE 2>&1 || die "Make clean failure" |
45 | 45 | make all > $LOGFILE 2>&1 || die "Make failure" |
46 | 46 | |
47 | +make DESTDIR=.bin/package install | |
48 | +tar --create --xz --file=mingw-pw3270.${MSYSTEM_CARCH}.tar.xz --directory=.bin/package --verbose . | |
49 | + | |
47 | 50 | echo "Build complete" |
48 | 51 | ... | ... |