Browse Source

Fix rpath, set to $ORIGIN/lib/ in non-FHS mode

master
probonopd 8 years ago
parent
commit
a0a3e54851
  1. 2
      shared/shared.cpp

2
shared/shared.cpp

@ -807,7 +807,7 @@ DeploymentInfo deployQtLibraries(const QString &appDirPath, const QStringList &a
}
if(fhsLikeMode == false){
changeIdentification("$ORIGIN/" + bundleLibraryDirectory, applicationBundle.binaryPath);
changeIdentification("$ORIGIN/lib/" + bundleLibraryDirectory, applicationBundle.binaryPath);
} else {
changeIdentification("$ORIGIN/../lib/" + bundleLibraryDirectory, applicationBundle.binaryPath);
}

Loading…
Cancel
Save