On Wed, 14 Apr 2021 12:18:00 GMT, Ambarish Rapte <ara...@openjdk.org> wrote:
>> Kevin Rushforth has updated the pull request incrementally with one >> additional commit since the last revision: >> >> update to use isAarch64 per review comments > > buildSrc/mac.gradle line 59: > >> 57: // Note that this is not necessarily the same as the preferred SDK >> version >> 58: def isAarch64 = TARGET_ARCH == "aarch64" || TARGET_ARCH == "arm64"; >> 59: def macOSMinVersion = (TARGET_ARCH == "aarch64" || TARGET_ARCH == >> "arm64") ? "11.0" : "10.12"; > > I guess `isAarch64` was defined to use on line 59 in ternary operator. Fixed. ------------- PR: https://git.openjdk.java.net/jfx/pull/462