Commit 330a38748bb9d8f2b88672e764cf55ad2309b4cd
1 parent
18a59423
Exists in
master
and in
1 other branch
Installing libraries on ci-build.
Showing
1 changed file
with
2 additions
and
12 deletions
Show diff stats
win/ci-build.sh
| ... | ... | @@ -33,14 +33,9 @@ pushd ${myDIR}/.build/lib3270 |
| 33 | 33 | ./configure > $LOGFILE 2>&1 || die "Configure failure" |
| 34 | 34 | make clean > $LOGFILE 2>&1 || die "Make clean failure" |
| 35 | 35 | make all > $LOGFILE 2>&1 || die "Make failure" |
| 36 | +make install > $LOGFILE 2>&1 || die "Install failure" | |
| 36 | 37 | popd |
| 37 | 38 | |
| 38 | -export LIB3270_CFLAGS="-I${myDIR}/.build/lib3270/src/include" | |
| 39 | -export LIB3270_LIBS="-L${myDIR}/.build/lib3270/.bin/Release -l3270.delayed" | |
| 40 | - | |
| 41 | -echo "LIB3270_CFLAGS=${LIB3270_CFLAGS}" | |
| 42 | -echo "LIB3270_LIBS=${LIB3270_LIBS}" | |
| 43 | - | |
| 44 | 39 | # |
| 45 | 40 | # Build LIBV3270 |
| 46 | 41 | # |
| ... | ... | @@ -52,14 +47,9 @@ pushd ${myDIR}/.build/libv3270 |
| 52 | 47 | ./configure > $LOGFILE 2>&1 || die "Configure failure" |
| 53 | 48 | make clean > $LOGFILE 2>&1 || die "Make clean failure" |
| 54 | 49 | make all > $LOGFILE 2>&1 || die "Make failure" |
| 50 | +make install > $LOGFILE 2>&1 || die "Install failure" | |
| 55 | 51 | popd |
| 56 | 52 | |
| 57 | -export LIBV3270_CFLAGS="-I${myDIR}/.build/libv3270/src/include ${LIB3270_CFLAGS}" | |
| 58 | -export LIBV3270_LIBS="-L${myDIR}/.build/libv3270/.bin/Release -lv3270 ${LIB3270_LIBS}" | |
| 59 | - | |
| 60 | -echo "LIBV3270_CFLAGS=${LIBV3270_CFLAGS}" | |
| 61 | -echo "LIBV3270_LIBS=${LIBV3270_LIBS}" | |
| 62 | - | |
| 63 | 53 | # |
| 64 | 54 | # Build PW3270 |
| 65 | 55 | # | ... | ... |