From a16cb0071946f6a08d77e26c7eaff092ea375a4e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafael=20=C3=81vila=20de=20Esp=C3=ADndola?= Date: Mon, 27 Jan 2020 13:08:32 -0800 Subject: [PATCH] configure: Don't use -Wno-error when building seastar MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This depends on the recent patches to avoid warnings in seastar. Signed-off-by: Rafael Ávila de Espíndola Message-Id: <20200127210833.200410-1-espindola@scylladb.com> --- configure.py | 1 - 1 file changed, 1 deletion(-) diff --git a/configure.py b/configure.py index 8b3f734aa9..6235f486de 100755 --- a/configure.py +++ b/configure.py @@ -1139,7 +1139,6 @@ for m in ['debug', 'release', 'sanitize']: modes[m]['cxxflags'] += ' ' + dbgflag seastar_cflags = args.user_cflags -seastar_cflags += ' -Wno-error' if args.target != '': seastar_cflags += ' -march=' + args.target seastar_ldflags = args.user_ldflags