mirror of
https://github.com/NLnetLabs/unbound.git
synced 2025-12-31 03:49:35 -05:00
Analysis workflow, fix env variable.
This commit is contained in:
parent
80a3f416de
commit
e249ca39ed
1 changed files with 9 additions and 2 deletions
11
.github/workflows/analysis_ports.yml
vendored
11
.github/workflows/analysis_ports.yml
vendored
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Reference in a new issue