From d6725226eb2e1a57750d2d4b7dcc0fb921681670 Mon Sep 17 00:00:00 2001 From: Gabriel Ferreira Date: Sat, 26 Jul 2025 19:28:55 +0200 Subject: [PATCH] bindings: Add dot before library extension Prevents confusion between internet and internet-apps libraries when built in release mode --- bindings/python/ns__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bindings/python/ns__init__.py b/bindings/python/ns__init__.py index 716e29bc9..b6400bc55 100644 --- a/bindings/python/ns__init__.py +++ b/bindings/python/ns__init__.py @@ -533,7 +533,7 @@ def load_modules(): cppyy.load_library(library) for module in modules: library_name_from_module = ( - f"{version}-{module}{'-' if len(build_type)>0 else ''}{build_type}" + f"{version}-{module}{'-' if len(build_type)>0 else ''}{build_type}." ) if library_name_from_module in library: cppyy.include(f"ns3/{module}-module.h")