Fix: ld_library_path uses : as separator
[deliverable/lttng-ivc.git] / lttng_ivc / utils / runtime.py
index c2d0b8397299b5f0453bcb2550873e108aee28ea..ac19e107b8db88ea70fc9b55ed483ec68a06ab25 100644 (file)
@@ -183,7 +183,7 @@ class Runtime(object):
         library_path = []
         for project in self.__projects:
             library_path.append(project.get_ld_library_path())
-        return " ".join(library_path)
+        return ":".join(library_path)
 
     def get_bin_path(self):
         path = []
This page took 0.022896 seconds and 5 git commands to generate.