From 8a26804b62190d2ce9acb02b588a5dd7d027528d Mon Sep 17 00:00:00 2001 From: Donat Zenichev Date: Mon, 2 Dec 2024 17:15:25 +0100 Subject: [PATCH] MT#59962 apps: dsm, exclude mod_swrating Exclude `mod_swrating` for the test environment, because otherwise requires linkage with swrate which is a separate, not visible library for sems repository. Change-Id: Ib4deaeebf6a1a411e473388920db017c1836842d --- apps/dsm/mods/Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/apps/dsm/mods/Makefile b/apps/dsm/mods/Makefile index ac35b388..ed3fd95c 100644 --- a/apps/dsm/mods/Makefile +++ b/apps/dsm/mods/Makefile @@ -6,6 +6,10 @@ include $(COREPATH)/../Makefile.defs exclude_dsm_modules ?= mod_mysql mod_aws mod_curl mod_xml mod_py +ifeq ($(TEST_ENVIRONMENT), yes) + exclude_dsm_modules += mod_swrating +endif + ifneq ($(USE_MONITORING), yes) exclude_dsm_modules += mod_monitoring endif