Skip to content

Commit

Permalink
deps.sh: fix sasquatch install
Browse files Browse the repository at this point in the history
Apply devttys0/sasquatch#47 to fix build failure
with latest gcc

It should be noted that sasquatch has not been updated since March 2021

Fix ReFirmLabs#498

Signed-off-by: Fabrice Fontaine <[email protected]>
  • Loading branch information
ffontaine authored and stkw0 committed Feb 28, 2024
1 parent 1aec10e commit d588acd
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion deps.sh
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,10 @@ function install_yaffshiv
function install_sasquatch
{
git clone --quiet --depth 1 --branch "master" https://github.com/devttys0/sasquatch
(cd sasquatch && $SUDO ./build.sh)
(cd sasquatch &&
wget https://github.com/devttys0/sasquatch/pull/47.patch &&
patch -p1 < 47.patch &&
$SUDO ./build.sh)
$SUDO rm -rf sasquatch
}

Expand Down

0 comments on commit d588acd

Please sign in to comment.