From: W.C.A. Wijngaards Date: Thu, 24 Jun 2021 18:42:32 +0000 (+0200) Subject: Analysis workflow, fix env variable. X-Git-Tag: release-1.13.2rc1~78 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e249ca39eddfe7187adb537a8dc9b4be17497531;p=thirdparty%2Funbound.git Analysis workflow, fix env variable. --- diff --git a/.github/workflows/analysis_ports.yml b/.github/workflows/analysis_ports.yml index 843c80538..4e109d58c 100644 --- a/.github/workflows/analysis_ports.yml +++ b/.github/workflows/analysis_ports.yml @@ -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"