aboutsummaryrefslogtreecommitdiffstats
path: root/share/share.qbs
diff options
context:
space:
mode:
authorJoerg Bornemann <joerg.bornemann@digia.com>2014-03-04 14:32:57 +0100
committerChristian Kandeler <christian.kandeler@digia.com>2014-03-06 11:45:00 +0100
commit2d8e7f802db3896aa273eaf2c793fe6316f5ec5c (patch)
treeb60cff0f3e04ea4c1b4e2b0bbff6bab418ce7985 /share/share.qbs
parentdb5754e19eefbed2c994e39c4db828d5685ba0b2 (diff)
fix deprecation warning in qbs project files
Change-Id: Ie8f639550fa4509fbec70092fabfaf44342546f2 Reviewed-by: Christian Kandeler <christian.kandeler@digia.com>
Diffstat (limited to 'share/share.qbs')
-rw-r--r--share/share.qbs2
1 files changed, 1 insertions, 1 deletions
diff --git a/share/share.qbs b/share/share.qbs
index 1086dede5..070e8df02 100644
--- a/share/share.qbs
+++ b/share/share.qbs
@@ -24,7 +24,7 @@ Product {
var cmd = new JavaScriptCommand();
cmd.description = "Copying share/qbs to build directory.";
cmd.highlight = "codegen";
- cmd.sourceCode = function() { File.copy(input.fileName, output.fileName); }
+ cmd.sourceCode = function() { File.copy(input.filePath, output.filePath); }
return cmd;
}
}