diff options
author | Christian Kandeler <christian.kandeler@digia.com> | 2014-07-16 14:04:09 +0200 |
---|---|---|
committer | Christian Kandeler <christian.kandeler@digia.com> | 2014-07-16 17:49:02 +0200 |
commit | 68db620a139f7dde967750f577924696405c8104 (patch) | |
tree | b38a21d554dd5c5f20631d760385c532743c015c /share/share.qbs | |
parent | f3becffd303459d44d99714987a544a67342c7a8 (diff) | |
download | qbs-68db620a139f7dde967750f577924696405c8104.tar.gz |
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>
Diffstat (limited to 'share/share.qbs')
-rw-r--r-- | share/share.qbs | 2 |
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(); |