From 7728a51030ad51f146bbc9a81cff276f5cd7341f Mon Sep 17 00:00:00 2001 From: Ilya Matveev Date: Fri, 22 Feb 2019 16:43:26 +0300 Subject: [PATCH] Use konan.home for compiler home in KonanTest --- .../src/main/groovy/org/jetbrains/kotlin/KonanTest.groovy | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/buildSrc/plugins/src/main/groovy/org/jetbrains/kotlin/KonanTest.groovy b/buildSrc/plugins/src/main/groovy/org/jetbrains/kotlin/KonanTest.groovy index dae99a89e96..56b9fa4f3d9 100644 --- a/buildSrc/plugins/src/main/groovy/org/jetbrains/kotlin/KonanTest.groovy +++ b/buildSrc/plugins/src/main/groovy/org/jetbrains/kotlin/KonanTest.groovy @@ -531,8 +531,8 @@ class RunDriverKonanTest extends KonanTest { RunDriverKonanTest() { super() - // We don't build the compiler if a custom org.jetbrains.kotlin.native.home path is specified. - if (!project.hasProperty("org.jetbrains.kotlin.native.home")) { + // We don't build the compiler if a custom konan.home path is specified. + if (!project.hasProperty("konan.home")) { dependsOn(project.rootProject.tasks['cross_dist']) } }