Fix: ld_library_path uses : as separator
authorJonathan Rajotte <jonathan.rajotte-julien@efficios.com>
Thu, 26 Oct 2017 15:01:07 +0000 (11:01 -0400)
committerJonathan Rajotte <jonathan.rajotte-julien@efficios.com>
Thu, 26 Oct 2017 15:01:07 +0000 (11:01 -0400)
Signed-off-by: Jonathan Rajotte <jonathan.rajotte-julien@efficios.com>
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.026574 seconds and 5 git commands to generate.