build: Drop -Wno-error=unused-but-set-variable

This commit is contained in:
Matt Borgerson 2021-05-19 20:45:58 -07:00 committed by mborgerson
parent 88a1252409
commit 60a7afb94b

View File

@ -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'
;;