From 4f4c6d16f911c5acbcd7c9f0ea81b1fb2f1a9d13 Mon Sep 17 00:00:00 2001 From: Saikrishna Arcot Date: Fri, 12 Jan 2024 10:20:04 -0800 Subject: [PATCH] Fix code coverage and ASAN not being enabled (#1338) This fixes a breakage from #1194 where code coverage and ASAN were not enabled, due to DEB_CONFIGURE_EXTRA_FLAGS no longer being used in dh_auto_configure. Signed-off-by: Saikrishna Arcot --- debian/rules | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/debian/rules b/debian/rules index b872e8062..2acdf6e61 100755 --- a/debian/rules +++ b/debian/rules @@ -52,7 +52,7 @@ endif # -DCMAKE_LIBRARY_PATH=$(DEB_HOST_MULTIARCH) override_dh_auto_configure: - dh_auto_configure -- ${SWSS_COMMON_CONFIG} $(configure_opts) + dh_auto_configure -- ${SWSS_COMMON_CONFIG} $(configure_opts) $(DEB_CONFIGURE_EXTRA_FLAGS) override_dh_install: ifneq ($(filter rpc,$(DEB_BUILD_PROFILES)),)