Corrected CabExtract build issue

This commit is contained in:
ghidra1
2019-06-17 12:18:23 -04:00
parent cafbb77db0
commit 33b112d7b3

View File

@@ -28,6 +28,13 @@ task unpackCabExtract (type: Copy) {
// This is done since configure changes the contents for a platform
// NOTE: this can cause the 'build/unpack' to be deleted prior to an unpack
outputs.upToDateWhen { false }
doLast {
// Force all unpacked files to have the same timestamp
ant.touch() {
fileset(dir: file("build/unpack/${cabextract}"))
}
}
}
/*********************************************************************************