From: W.C.A. Wijngaards Date: Thu, 24 Jun 2021 17:35:12 +0000 (+0200) Subject: Analysis workflow, Fixup spelling X-Git-Tag: release-1.13.2rc1~85 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=82e7f6f056ac5bc60abdf56438ab16309b83c8b3;p=thirdparty%2Funbound.git Analysis workflow, Fixup spelling --- diff --git a/.github/workflows/analysis_ports.yml b/.github/workflows/analysis_ports.yml index 6a75959fe..e5ea5d875 100644 --- a/.github/workflows/analysis_ports.yml +++ b/.github/workflows/analysis_ports.yml @@ -269,19 +269,25 @@ jobs: # remove pod::Usage because we do not need -help or -man output # from the Configure script sed -e 's/use Pod::Usage//' < Configure > Configure.fix + echo "./Configure.fix no-shared no-asm -DOPENSSL_NO_CAPIENG mingw64 --prefix=\""$prepath/openssl\""" ./Configure.fix no-shared no-asm -DOPENSSL_NO_CAPIENG mingw64 --prefix="$prepath/openssl" # make the libs only, build faster + echo "make build_libs" #make make build_libs mv Makefile Makefile.orig # fixup \\ in the installtop to /. + echo "fixup INSTALLTOP" sed -e 's?^INSTALLTOP=.*$?INSTALLTOP='"$prepath"'/openssl?' < Makefile.orig > Makefile # install the includes and libs only, build faster + echo "make install_dev" #make install_sw make install_dev cd .. + echo "unbound" cd unbound - ./configure --enable-debug --enable-static-exe --disable-flto "--with-ssl=/$prepath/openssl" + echo "./configure --enable-debug --enable-static-exe --disable-flto \"--with-ssl=$prepath/openssl\"" + ./configure --enable-debug --enable-static-exe --disable-flto "--with-ssl=$prepath/openssl" || (cat config.log; exit 0) make make test - name: test_android