From 60a7afb94baddc2104863a6ee4e88b4b3d9288cf Mon Sep 17 00:00:00 2001
From: Matt Borgerson <contact@mborgerson.com>
Date: Wed, 19 May 2021 20:45:58 -0700
Subject: [PATCH] build: Drop -Wno-error=unused-but-set-variable

---
 build.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/build.sh b/build.sh
index baefdc3bd3..b621a4f919 100755
--- a/build.sh
+++ b/build.sh
@@ -159,7 +159,7 @@ fi
 case "$(uname -s)" in # Adjust compilation options based on platform
     Linux)
         echo 'Compiling for Linux...'
-        sys_cflags='-Wno-error=redundant-decls -Wno-error=unused-but-set-variable'
+        sys_cflags='-Wno-error=redundant-decls'
         opts="$opts --disable-werror"
         postbuild='package_linux'
         ;;