From a0a3e54851f40ba0d8c9b4e3ae83fa22c2d9352a Mon Sep 17 00:00:00 2001 From: probonopd Date: Sun, 19 Feb 2017 11:58:54 +0100 Subject: [PATCH] Fix rpath, set to $ORIGIN/lib/ in non-FHS mode --- shared/shared.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shared/shared.cpp b/shared/shared.cpp index 9e74865..02e022e 100644 --- a/shared/shared.cpp +++ b/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); }