From 3eb820c3419aa0351a89d642e2a24a5ef8090870 Mon Sep 17 00:00:00 2001 From: Gleb Mazovetskiy Date: Tue, 21 Jan 2020 07:58:12 +0000 Subject: [PATCH] RG350 buildroot: Only build dependencies Previously, there was an issue with the RG350 buildroot that necessitated building the entire thing. That issue has been fixed and we can now build only the minimal set of dependencies (same as we do for RetroFW). --- Packaging/OpenDingux/build.sh | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/Packaging/OpenDingux/build.sh b/Packaging/OpenDingux/build.sh index ae7bd4262..973897b38 100755 --- a/Packaging/OpenDingux/build.sh +++ b/Packaging/OpenDingux/build.sh @@ -60,11 +60,7 @@ make_buildroot() { cp buildroot_${TARGET}_defconfig "$BUILDROOT/configs/${TARGET}_devilutionx_defconfig" cd "$BUILDROOT" make ${TARGET}_devilutionx_defconfig - if [[ "$TARGET" == "rg350" ]]; then - BR2_JLEVEL=0 make - else - BR2_JLEVEL=0 make toolchain libzip sdl sdl_mixer sdl_ttf - fi + BR2_JLEVEL=0 make toolchain libzip sdl sdl_mixer sdl_ttf cd - }