blob: b607e823d1f3e0d2d250e590765bf77542722b3f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
--- 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
+}
|