aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Kandeler <christian.kandeler@digia.com>2014-07-16 14:04:09 +0200
committerChristian Kandeler <christian.kandeler@digia.com>2014-07-16 17:49:02 +0200
commit68db620a139f7dde967750f577924696405c8104 (patch)
treeb38a21d554dd5c5f20631d760385c532743c015c
parentf3becffd303459d44d99714987a544a67342c7a8 (diff)
Fix qbs build of API autotest.
The "share" directory was no longer being found due to the recent semantic change for product.buildDirectory. Change-Id: I89eee64aa18510fe592765e32a99784f0659d400 Reviewed-by: Joerg Bornemann <joerg.bornemann@digia.com>
-rw-r--r--share/share.qbs2
1 files changed, 1 insertions, 1 deletions
diff --git a/share/share.qbs b/share/share.qbs
index c00674e81..bfec8ffac 100644
--- a/share/share.qbs
+++ b/share/share.qbs
@@ -18,7 +18,7 @@ Product {
Transformer {
inputs: "qbs"
Artifact {
- filePath: "share/qbs"
+ filePath: project.buildDirectory + project.resourcesInstallDir + "/share/qbs"
}
prepare: {
var cmd = new JavaScriptCommand();