aboutsummaryrefslogtreecommitdiffstats
path: root/qtcreator.pro
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@digia.com>2014-08-08 10:53:16 +0200
committerChristian Kandeler <christian.kandeler@digia.com>2014-08-08 14:40:19 +0200
commit433426847f27f97e56e6a3ff5535f3afd9b364e4 (patch)
treec57cc8268774453e69741fda3aba74a513b905bd /qtcreator.pro
parentba1dd7416d80d7c3ddc1eaff83e00bf5189c0018 (diff)
Fix RPATH for qbs application.
The current random number of backslashes results in an RPATH of '\RIGIN' in the binary. Use a different random number of backslashes instead. Change-Id: Ife0f1a9c7f65d9e83dc39e90cb150421755ebb2c Reviewed-by: Joerg Bornemann <joerg.bornemann@digia.com>
Diffstat (limited to 'qtcreator.pro')
-rw-r--r--qtcreator.pro2
1 files changed, 1 insertions, 1 deletions
diff --git a/qtcreator.pro b/qtcreator.pro
index ecddef5889..e2d2de9e43 100644
--- a/qtcreator.pro
+++ b/qtcreator.pro
@@ -49,7 +49,7 @@ minQtVersion(5, 0, 0):exists(src/shared/qbs/qbs.pro) {
QBS_APPS_RPATH_DIR = @loader_path/../PlugIns
} else {
QBS_PLUGINS_BUILD_DIR = $${IDE_BUILD_TREE}/$${IDE_LIBRARY_BASENAME}/qtcreator
- QBS_APPS_RPATH_DIR = \\\$\\\$ORIGIN/../$$IDE_LIBRARY_BASENAME/qtcreator
+ QBS_APPS_RPATH_DIR = \$\$ORIGIN/../$$IDE_LIBRARY_BASENAME/qtcreator
}
cache(QBS_PLUGINS_BUILD_DIR)
cache(QBS_APPS_RPATH_DIR)