From 9ab2855d6e74c9c1f02994c7544bc90d36795b29 Mon Sep 17 00:00:00 2001 From: Michal Berger Date: Fri, 12 Feb 2021 18:23:23 +0100 Subject: [PATCH] pgkdep/git: Don't treat warnings as errors in refspdk build on FreeBSD 12.2 FreeBSD release has problems with building spdk with 3.19 fio vm_setup.sh provides. Instead of patching anything, simply ignore the warnings. Signed-off-by: Michal Berger Change-Id: I1d85320126d664c7ed45ee369612391cfba8fd06 Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/6405 Tested-by: SPDK CI Jenkins Reviewed-by: Jim Harris Reviewed-by: Karol Latecki Reviewed-by: Tomasz Zawadzki Community-CI: Mellanox Build Bot --- test/common/config/pkgdep/git | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/common/config/pkgdep/git b/test/common/config/pkgdep/git index 675d51104..72940c4cd 100644 --- a/test/common/config/pkgdep/git +++ b/test/common/config/pkgdep/git @@ -95,7 +95,7 @@ function install_refspdk() { # Prepare separate, fixed, cmdline for the FreeBSD, Issue #1397. if [[ $OSID == freebsd ]]; then - config_params="--enable-debug --enable-werror" + config_params="--enable-debug" config_params+=" --without-isal --with-fio=/usr/src/fio" # TODO: Remove this if-block after 21.01 LTS is released and 20.01 LTS is deprecated.