From ba8f5e3eaf3d701be8b2d9a49fd0b616d63c5f85 Mon Sep 17 00:00:00 2001 From: Fabrice Fontaine Date: Mon, 9 May 2022 17:26:27 +0200 Subject: [PATCH] deps.sh: fix sasquatch install Apply https://github.com/devttys0/sasquatch/pull/47 to fix build failure with latest gcc It should be noted that sasquatch has not been updated since March 2021 Fix #498 Signed-off-by: Fabrice Fontaine --- deps.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/deps.sh b/deps.sh index cbd821cd9..c186d3b79 100755 --- a/deps.sh +++ b/deps.sh @@ -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 }