aboutsummaryrefslogtreecommitdiffstats
path: root/share
diff options
context:
space:
mode:
authorJoerg Bornemann <joerg.bornemann@qt.io>2017-09-06 10:33:48 +0200
committerJoerg Bornemann <joerg.bornemann@qt.io>2017-09-07 08:46:59 +0000
commitdfc2d79dcb480781ad2ce97cdf244c2c44c47c79 (patch)
treec0d7f60806c297c5e82b2d2d39af6e5790812211 /share
parentcc5537699dd19fbc0138ef93d792c8044eb86a54 (diff)
Change type of java.jdkPath from path to string
The JDK is usually not located below the project root. A path property is not useful here. Change-Id: I2e150d0dfe0e9d925ff242b4fa46a606d750753e Reviewed-by: Jake Petroules <jake.petroules@qt.io>
Diffstat (limited to 'share')
-rw-r--r--share/qbs/modules/java/JavaModule.qbs2
1 files changed, 1 insertions, 1 deletions
diff --git a/share/qbs/modules/java/JavaModule.qbs b/share/qbs/modules/java/JavaModule.qbs
index f9bbc583a..fce90de3a 100644
--- a/share/qbs/modules/java/JavaModule.qbs
+++ b/share/qbs/modules/java/JavaModule.qbs
@@ -55,7 +55,7 @@ Module {
property string jarFilePath: FileInfo.joinPaths(jdkPath, "bin", jarName)
property string jarName: "jar"
- property path jdkPath: jdk.path
+ property string jdkPath: jdk.path
version: compilerVersion
property string compilerVersion: jdk.version ? jdk.version[1] : undefined