Browse Source

Use hg import for applying patch

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

+ 5
- 1
build.gradle View File

@@ -65,7 +65,11 @@ project('hotspot') {
ant.delete(file: new File(file('hotspot'), it[1]))
}
}
ant.patch(patchfile: "../patches/dcevm-${hotspotTag}.patch", strip: 1)
// Use hg import since ant.patchfile requires 'patch' to be installed
exec {
executable 'hg'
args 'import', '--no-commit', "../patches/dcevm-${hotspotTag}.patch"
}
}

task compileFastdebug(type: InvokeMake) {

Loading…
Cancel
Save