From 35f7573deeba6e926d697913f7f5c076d57226bd Mon Sep 17 00:00:00 2001
From: Botond Baranyi <botond.baranyi@ericsson.com>
Date: Fri, 3 Mar 2017 13:48:27 +0100
Subject: [PATCH] Fixed logger control test when used with dynamic linking

Change-Id: I88281d7833012280f62667c74d258b0e90402053
Signed-off-by: Botond Baranyi <botond.baranyi@ericsson.com>
---
 regression_test/logger_control/Makefile | 9 +++++++--
 1 file changed, 7 insertions(+), 2 deletions(-)

diff --git a/regression_test/logger_control/Makefile b/regression_test/logger_control/Makefile
index ef06da608..4d3d5d86c 100644
--- a/regression_test/logger_control/Makefile
+++ b/regression_test/logger_control/Makefile
@@ -53,7 +53,12 @@ TTCN3_LIB = ttcn3$(RT2_SUFFIX)$(DYNAMIC_SUFFIX)
 #
 
 # TTCN-3 modules of this project:
-TTCN3_MODULES := logcontrol.ttcn TitanLoggerControl.ttcn
+TTCN3_MODULES := logcontrol.ttcn
+
+# This is needed by the compiler for semantic analysis, but it should
+# not be built and linked to the executable (since it's already part
+# of the runtime library)
+TITAN_RUNTIME_MODULES := TitanLoggerControl.ttcn
 
 # ASN.1 modules of this project:
 ASN1_MODULES =
@@ -116,7 +121,7 @@ $(TARGET): $(OBJECTS)
 $(GENERATED_SOURCES) $(GENERATED_HEADERS): compile
 	@if [ ! -f $@ ]; then $(RM) compile; $(MAKE) compile; fi
 
-compile: $(TTCN3_MODULES) $(ASN1_MODULES)
+compile: $(TTCN3_MODULES) $(ASN1_MODULES) $(TITAN_RUNTIME_MODULES)
 	$(TTCN3_COMPILER) $(COMPILER_FLAGS) $^ - $?
 	touch $@
 
-- 
GitLab