]> git.ipfire.org Git - thirdparty/unbound.git/commitdiff
Analysis workflow, Fixup spelling
authorW.C.A. Wijngaards <wouter@nlnetlabs.nl>
Thu, 24 Jun 2021 17:35:12 +0000 (19:35 +0200)
committerW.C.A. Wijngaards <wouter@nlnetlabs.nl>
Thu, 24 Jun 2021 17:35:12 +0000 (19:35 +0200)
.github/workflows/analysis_ports.yml

index 6a75959fe5788f49058a3977ccd5e1c0f994c61b..e5ea5d875864f1c186958693a4008b6a8171760f 100644 (file)
@@ -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