From 330a38748bb9d8f2b88672e764cf55ad2309b4cd Mon Sep 17 00:00:00 2001 From: Perry Werneck Date: Wed, 11 Jan 2023 09:12:51 -0300 Subject: [PATCH] Installing libraries on ci-build. --- win/ci-build.sh | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/win/ci-build.sh b/win/ci-build.sh index 28694b2..18b9b08 100644 --- a/win/ci-build.sh +++ b/win/ci-build.sh @@ -33,14 +33,9 @@ pushd ${myDIR}/.build/lib3270 ./configure > $LOGFILE 2>&1 || die "Configure failure" make clean > $LOGFILE 2>&1 || die "Make clean failure" make all > $LOGFILE 2>&1 || die "Make failure" +make install > $LOGFILE 2>&1 || die "Install failure" popd -export LIB3270_CFLAGS="-I${myDIR}/.build/lib3270/src/include" -export LIB3270_LIBS="-L${myDIR}/.build/lib3270/.bin/Release -l3270.delayed" - -echo "LIB3270_CFLAGS=${LIB3270_CFLAGS}" -echo "LIB3270_LIBS=${LIB3270_LIBS}" - # # Build LIBV3270 # @@ -52,14 +47,9 @@ pushd ${myDIR}/.build/libv3270 ./configure > $LOGFILE 2>&1 || die "Configure failure" make clean > $LOGFILE 2>&1 || die "Make clean failure" make all > $LOGFILE 2>&1 || die "Make failure" +make install > $LOGFILE 2>&1 || die "Install failure" popd -export LIBV3270_CFLAGS="-I${myDIR}/.build/libv3270/src/include ${LIB3270_CFLAGS}" -export LIBV3270_LIBS="-L${myDIR}/.build/libv3270/.bin/Release -lv3270 ${LIB3270_LIBS}" - -echo "LIBV3270_CFLAGS=${LIBV3270_CFLAGS}" -echo "LIBV3270_LIBS=${LIBV3270_LIBS}" - # # Build PW3270 # -- libgit2 0.21.2