Skip to content

Commit

Permalink
The patch for the zlib is not needed after 1.2.13 version
Browse files Browse the repository at this point in the history
  • Loading branch information
mrserb committed Aug 17, 2023
1 parent 5c383e7 commit 59d7c20
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 330 deletions.
17 changes: 1 addition & 16 deletions installers/linux/alpine/tar/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -65,25 +65,10 @@ task copySource(type: Exec) {
"${project.rootDir}/", buildRoot
}

/**
* Scan the patches folder for any .patch that needs
* to be applied before start building.
*/
task applyPatches() {
dependsOn copySource
doLast {
fileTree('patches').matching {
include '*.patch'
}.each { f ->
ant.patch(patchfile: f, dir: "$buildRoot", strip: 0)
}
}
}

task configureBuild(type: Exec) {

dependsOn project.configurations.compile
dependsOn applyPatches
dependsOn copySource
workingDir "$buildRoot"

// Platform specific flags
Expand Down
149 changes: 0 additions & 149 deletions installers/linux/alpine/tar/patches/zlib.patch

This file was deleted.

17 changes: 1 addition & 16 deletions installers/linux/universal/tar/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -54,24 +54,9 @@ task copySource(type: Exec) {
"${project.rootDir}/", buildRoot
}

/**
* Scan the patches folder for any .patch that needs
* to be applied before start building.
*/
task applyPatches() {
dependsOn copySource
doLast {
fileTree('patches').matching {
include '*.patch'
}.each { f ->
ant.patch(patchfile: f, dir: "$buildRoot", strip: 0)
}
}
}

task configureBuild(type: Exec) {
dependsOn project.configurations.compile
dependsOn applyPatches
dependsOn copySource
workingDir "$buildRoot"

// Platform specific flags
Expand Down
149 changes: 0 additions & 149 deletions installers/linux/universal/tar/patches/zlib.patch

This file was deleted.

0 comments on commit 59d7c20

Please sign in to comment.