Skip to content
This repository was archived by the owner on Jan 13, 2026. It is now read-only.

Commit d588acd

Browse files
ffontainestkw0
authored andcommitted
deps.sh: fix sasquatch install
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 <fabrice.fontaine@orange.com>
1 parent 1aec10e commit d588acd

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

deps.sh

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,10 @@ function install_yaffshiv
8484
function install_sasquatch
8585
{
8686
git clone --quiet --depth 1 --branch "master" https://github.com/devttys0/sasquatch
87-
(cd sasquatch && $SUDO ./build.sh)
87+
(cd sasquatch &&
88+
wget https://github.com/devttys0/sasquatch/pull/47.patch &&
89+
patch -p1 < 47.patch &&
90+
$SUDO ./build.sh)
8891
$SUDO rm -rf sasquatch
8992
}
9093

0 commit comments

Comments
 (0)