]> git.ipfire.org Git - thirdparty/unbound.git/commitdiff
Analysis workflow, fix env variable.
authorW.C.A. Wijngaards <wouter@nlnetlabs.nl>
Thu, 24 Jun 2021 18:42:32 +0000 (20:42 +0200)
committerW.C.A. Wijngaards <wouter@nlnetlabs.nl>
Thu, 24 Jun 2021 18:42:32 +0000 (20:42 +0200)
.github/workflows/analysis_ports.yml

index 843c80538ee0ffbbc9d2f903a42c5863965d7886..4e109d58cc53c17c0e1366d324610650a543c9ea 100644 (file)
@@ -289,8 +289,15 @@ jobs:
           curl -L -k -s -S -o expat-2.2.10.tar.gz https://github.com/libexpat/libexpat/releases/download/R_2_2_10/expat-2.2.10.tar.gz
           tar xzf expat-2.2.10.tar.gz
           cd expat-2.2.10
-          echo "./configure CONFIG_SHELL=/usr/bin/sh --prefix=\"$prepath/expat\" --exec-prefix=\"$prepath/expat\" --bindir=\"$prepath/expat/bin\" --includedir=\"$prepath/expat/include\" --mandir=\"$prepath/expat/man\" --libdir=\"$prepath/expat/lib\""
-          ./configure CONFIG_SHELL=/usr/bin/sh --prefix="$prepath/expat" --exec-prefix="$prepath/expat" --bindir="$prepath/expat/bin" --includedir="$prepath/expat/include" --mandir="$prepath/expat/man" --libdir="$prepath/expat/lib"
+          echo "SHELL=${SHELL}"
+          ls /bin/sh || echo whatever
+          ls /usr/bin/sh || echo whatever
+          export CONFIG_SHELL=/usr/bin/sh
+          echo "CONFIG_SHELL=${CONFIG_SHELL}"
+          export SHELL=/usr/bin/sh
+          echo "SHELL=${SHELL}"
+          echo "./configure --prefix=\"$prepath/expat\" --exec-prefix=\"$prepath/expat\" --bindir=\"$prepath/expat/bin\" --includedir=\"$prepath/expat/include\" --mandir=\"$prepath/expat/man\" --libdir=\"$prepath/expat/lib\""
+          ./configure --prefix="$prepath/expat" --exec-prefix="$prepath/expat" --bindir="$prepath/expat/bin" --includedir="$prepath/expat/include" --mandir="$prepath/expat/man" --libdir="$prepath/expat/lib"
           echo "make"
           make
           echo "make install"