From: Darren Tucker Date: Thu, 21 Oct 2021 04:33:27 +0000 (+1100) Subject: Remove -Werror from compiler package to install. X-Git-Tag: V_8_9_P1~226 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=086a4b5977472aefa3de918b88efad0faf83b2b1;p=thirdparty%2Fopenssh-portable.git Remove -Werror from compiler package to install. --- diff --git a/.github/setup_ci.sh b/.github/setup_ci.sh index c80bd38d4..c0f48f374 100755 --- a/.github/setup_ci.sh +++ b/.github/setup_ci.sh @@ -29,7 +29,8 @@ for TARGET in $TARGETS; do # nothing to do ;; clang-*|gcc-*) - PACKAGES="$PACKAGES $TARGET" + compiler=$(sed 's/-Werror//' <<<$TARGET) + PACKAGES="$PACKAGES $compiler" ;; kerberos5) PACKAGES="$PACKAGES heimdal-dev"