You've already forked linuxdeploy
mirror of
https://github.com/encounter/linuxdeploy.git
synced 2026-03-30 11:18:58 -07:00
Fix path calculation
This commit is contained in:
+1
-1
@@ -420,7 +420,7 @@ namespace linuxdeploy {
|
||||
rpathDestination = destination.parent_path().string();
|
||||
}
|
||||
|
||||
auto relPath = bf::relative(bf::absolute(appDirPath) / ("usr/lib" + libSuffix), bf::absolute(rpathDestination));
|
||||
auto relPath = bf::relative(bf::absolute(appDirPath) / "usr" / getLibraryDirName(path)), bf::absolute(rpathDestination));
|
||||
rpath = "$ORIGIN/" + relPath.string();
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user