summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJake Petroules <jake.petroules@petroules.com>2014-09-16 01:29:06 -0400
committerJake Petroules <jake.petroules@petroules.com>2014-10-07 19:22:46 +0200
commit790380636e5604a418e465a7fd11273ff6b148fb (patch)
tree7b2a9d5ce167fba067670b7d92627aa0c3387b4b
parent8853c99a8fb534b310974a91d706bd8d2c9e95fa (diff)
downloadqttools-790380636e5604a418e465a7fd11273ff6b148fb.tar.gz
macdeployqt: fix checking for existing deployed files.
Change-Id: I53c44256e33f3b5d7db93b4765308335a11e8ecd Reviewed-by: Joerg Bornemann <joerg.bornemann@digia.com>
-rw-r--r--src/macdeployqt/shared/shared.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/macdeployqt/shared/shared.cpp b/src/macdeployqt/shared/shared.cpp
index 0c7e9417f..314bc2cc5 100644
--- a/src/macdeployqt/shared/shared.cpp
+++ b/src/macdeployqt/shared/shared.cpp
@@ -487,7 +487,7 @@ DeploymentInfo deployQtFrameworks(QList<FrameworkInfo> frameworks,
deploymentInfo.qtPath.chop(5); // remove "/lib/"
}
- if (framework.installName.startsWith("/@executable_path/")) {
+ if (framework.installName.startsWith("@executable_path/")) {
LogError() << framework.frameworkName << "already deployed, skipping.";
continue;
}