mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2024-11-22 04:05:39 +00:00
GP-1106: Fixing issue with gradle string comparisons
This commit is contained in:
parent
86e579d910
commit
96683a8dce
@ -31,7 +31,7 @@ project.ext.PLATFORMS = [
|
|||||||
* Returns the local platform name.
|
* Returns the local platform name.
|
||||||
*********************************************************************************/
|
*********************************************************************************/
|
||||||
import org.gradle.nativeplatform.platform.internal.DefaultNativePlatform
|
import org.gradle.nativeplatform.platform.internal.DefaultNativePlatform
|
||||||
ext.currentPlatformName = null
|
ext.currentPlatformName = findProperty("currentPlatformName")
|
||||||
ext.getCurrentPlatformName = {
|
ext.getCurrentPlatformName = {
|
||||||
|
|
||||||
if (currentPlatformName) {
|
if (currentPlatformName) {
|
||||||
@ -75,7 +75,7 @@ ext.getCurrentPlatformName = {
|
|||||||
throw new GradleException("Unrecognized platform architecture: $arch" )
|
throw new GradleException("Unrecognized platform architecture: $arch" )
|
||||||
}
|
}
|
||||||
|
|
||||||
currentPlatformName = "${os}_${arch}"
|
currentPlatformName = "${os}_${arch}".toString() // convert GStringImpl to String so .equals() works as expected
|
||||||
|
|
||||||
println "OS: " + osJvm + (osJvm != osGradle ? " (gradle: " + osGradle + ")" : "")
|
println "OS: " + osJvm + (osJvm != osGradle ? " (gradle: " + osGradle + ")" : "")
|
||||||
println "Arch: " + archJvm + (archJvm != archGradle ? " (gradle: " + archGradle + ")" : "")
|
println "Arch: " + archJvm + (archJvm != archGradle ? " (gradle: " + archGradle + ")" : "")
|
||||||
|
Loading…
Reference in New Issue
Block a user