From 921abc7bebf1a7abb1c6bf4b6a70fc45b838ed67 Mon Sep 17 00:00:00 2001 From: Christian Soffke Date: Tue, 5 Aug 2025 23:15:10 +0200 Subject: [PATCH] toolchains: mips: prevent failing build on MacOS mips gcc will fail to build using the system's BSD sed. Make sure the Homebrew-installed GNU sed 'sed' simlink is in the PATH. Otherwise, only 'gsed' can be used to run GNU sed by default. Change-Id: I0a793c692d9a6de4f326e447281892eb08e4f4cb --- tools/rockboxdev.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/rockboxdev.sh b/tools/rockboxdev.sh index 361a4f5f2d..2126fa84a5 100755 --- a/tools/rockboxdev.sh +++ b/tools/rockboxdev.sh @@ -14,6 +14,7 @@ if [ "$system" == "Darwin" ]; then READLINK=greadlink TMP="$TMPDIR" SED=gsed + PATH="$HOMEBREW_PREFIX/opt/gnu-sed/libexec/gnubin:${PATH}" else READLINK=readlink parallel=`nproc`