Restricted build fixes.

This commit is contained in:
Nikolay Igotti
2019-11-12 01:17:19 +03:00
parent 8e9b1917fb
commit 296d4e72e8
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -498,6 +498,7 @@ task bundleRestricted(type: Tar) {
if (PlatformInfo.isAppleTarget(target)) if (PlatformInfo.isAppleTarget(target))
exclude "klib/platform/${target.name}" exclude "klib/platform/${target.name}"
} }
exclude '**/xcode_license.pdf'
into baseName into baseName
} }
@@ -137,6 +137,6 @@ private fun generatePlatformLibraries(target: String, inputDirectory: File, outp
} }
executorPool.shutdown() executorPool.shutdown()
if (!saveTemps) { if (!saveTemps) {
File("$outputDirectory/clangModulesCache").deleteRecursively() File("${outputDirectory.absolutePath}/clangModulesCache").deleteRecursively()
} }
} }