mirror of
https://git.freebsd.org/ports.git
synced 2025-06-14 01:00:33 -04:00
- Now that openjdk11+ are registered in bsd.java.mk, drop the JDK11 and JDK12 options Changes: https://ghidra-sre.org/releaseNotes_9.1_final.html#9_1 PR: 239902 Submitted by: Tamas Szakaly <sghctoma@gmail.com> (maintainer)
18 lines
750 B
Groovy
18 lines
750 B
Groovy
--- GPL/CabExtract/build.gradle.orig 2019-11-04 12:59:19 UTC
|
|
+++ GPL/CabExtract/build.gradle
|
|
@@ -58,7 +58,7 @@ task configureCabExtract (type: Exec) {
|
|
* The cabextract tool requires that its 'configure' script is called before make.
|
|
*********************************************************************************/
|
|
def currentPlatform = getCurrentPlatformName()
|
|
-if (['linux64', 'osx64'].contains(currentPlatform)) {
|
|
+if (['linux64', 'osx64', 'freebsd64'].contains(currentPlatform)) {
|
|
|
|
def makeName = "${currentPlatform}CabExtractMake" // native Make task found automatically
|
|
|
|
@@ -75,4 +75,4 @@ if (['linux64', 'osx64'].contains(currentPlatform)) {
|
|
delete file("build/unpack/${cabextract}")
|
|
}
|
|
}
|
|
-}
|
|
\ No newline at end of file
|
|
+}
|