From af98d8dd7024b07a21169932f486d15596edf613 Mon Sep 17 00:00:00 2001 From: Ivan Dubrov Date: Fri, 25 Apr 2014 12:35:02 -0700 Subject: [PATCH] Fixing JRE locations comparison --- build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.gradle b/build.gradle index 2d59edf3..43cf1990 100644 --- a/build.gradle +++ b/build.gradle @@ -23,7 +23,7 @@ project('hotspot') { } task prepareJvm { - onlyIf { jreFile != targetJreFile } + onlyIf { jreFile.canonicalPath != targetJreFile.canonicalPath } doLast { ant.copy(todir: targetJreFile) { fileset(dir: jreFile) -- 2.39.5