From d33afd6007d7dbe51e617cb7c3c011b187d0d9de Mon Sep 17 00:00:00 2001 From: Nikolay Igotti Date: Fri, 1 Jun 2018 16:38:41 +0300 Subject: [PATCH] Fix incorrect dependency in the runtime. --- backend.native/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend.native/build.gradle b/backend.native/build.gradle index d104e937bf1..7da840f1b9a 100644 --- a/backend.native/build.gradle +++ b/backend.native/build.gradle @@ -205,7 +205,7 @@ targetList.each { target -> project(':runtime').file('src/launcher/kotlin')] inputs.dir(project(':runtime').file('src/launcher/kotlin')) - outputs.dir(project(':runtime').file("build/${target}Start")) + outputs.file(project(':runtime').file("build/${target}Start.bc")) dependsOn ":runtime:${target}Runtime", "${target}Stdlib" }