From 33b112d7b3837616fb411e83a1734051b3b5bdfa Mon Sep 17 00:00:00 2001 From: ghidra1 Date: Mon, 17 Jun 2019 12:18:23 -0400 Subject: [PATCH] Corrected CabExtract build issue --- GPL/CabExtract/build.gradle | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/GPL/CabExtract/build.gradle b/GPL/CabExtract/build.gradle index cb46a44b5b..de524ca58e 100644 --- a/GPL/CabExtract/build.gradle +++ b/GPL/CabExtract/build.gradle @@ -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}")) + } + } } /*********************************************************************************