Quellcode durchsuchen

Use hg import for applying patch

tags/light-jdk8u5+36
Ivan Dubrov vor 10 Jahren
Ursprung
Commit
0239779c04
1 geänderte Dateien mit 5 neuen und 1 gelöschten Zeilen
  1. 5
    1
      build.gradle

+ 5
- 1
build.gradle Datei anzeigen

@@ -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) {

Laden…
Abbrechen
Speichern