Browse Source

Fixing JRE locations comparison

tags/light-jdk8u5+36
Ivan Dubrov 10 years ago
parent
commit
af98d8dd70
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      build.gradle

+ 1
- 1
build.gradle View File

@@ -23,7 +23,7 @@ project('hotspot') {
}

task prepareJvm {
onlyIf { jreFile != targetJreFile }
onlyIf { jreFile.canonicalPath != targetJreFile.canonicalPath }
doLast {
ant.copy(todir: targetJreFile) {
fileset(dir: jreFile)

Loading…
Cancel
Save