aboutsummaryrefslogtreecommitdiffstats
path: root/qbs.qbs
diff options
context:
space:
mode:
authorJoerg Bornemann <joerg.bornemann@theqtcompany.com>2015-01-13 12:28:07 +0100
committerChristian Kandeler <christian.kandeler@theqtcompany.com>2015-01-13 13:32:02 +0100
commitd8a90f254e37cd40cc2a684e584a579689a4fb16 (patch)
tree34d542e38c9ac78c5da93b8fa3b3601227906409 /qbs.qbs
parentab4dc4c45d9580d579044f80ca1a0bec0fca2cea (diff)
remove superfluous project variable
There's no project variable directly beneath the Project item. Change-Id: I31d158a6d291200b2bb4d739617752a6ab88dd2a Reviewed-by: Christian Kandeler <christian.kandeler@theqtcompany.com>
Diffstat (limited to 'qbs.qbs')
-rw-r--r--qbs.qbs2
1 files changed, 1 insertions, 1 deletions
diff --git a/qbs.qbs b/qbs.qbs
index 7d084c955..6eb2f35c4 100644
--- a/qbs.qbs
+++ b/qbs.qbs
@@ -13,7 +13,7 @@ Project {
property string relativePluginsPath: "../" + libDirName
property string relativeSearchPath: ".."
property stringList libRPaths: {
- if (!project.enableRPath)
+ if (!enableRPath)
return undefined;
if (qbs.targetOS.contains("linux"))
return ["$ORIGIN/../" + libDirName];