The path must point to either the lib32 or lib64 subdirectory. As it
stands this patch ignores 32 bit because we basically don't care about
that.
---
wrapper/disk_sync.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/wrapper/disk_sync.py b/wrapper/disk_sync.py
index 109cbc3..42fbbaf 100644
--- a/wrapper/disk_sync.py
+++ b/wrapper/disk_sync.py
@@ -344,7 +344,7 @@ def get_nbdkit_cmd(disk, key):
state = State().instance
logging.debug('Generating nbdkit command')
- env = 'LD_LIBRARY_PATH=%s' % VDDK_LIBDIR
+ env = 'LD_LIBRARY_PATH=%s/lib64' % VDDK_LIBDIR
if 'LD_LIBRARY_PATH' in os.environ:
env += ':' + os.environ['LD_LIBRARY_PATH']
--
2.22.0