From: Remi Collet Date: Thu, 25 Jun 2020 12:38:49 +0000 (+0200) Subject: ensure all files have same date in official archives X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=5c37715dfdcea7b7d34d1ceaef71c93d925c6db5;p=php ensure all files have same date in official archives --- diff --git a/scripts/dev/makedist b/scripts/dev/makedist index 515e4ba722..1326929a3a 100755 --- a/scripts/dev/makedist +++ b/scripts/dev/makedist @@ -159,7 +159,8 @@ fi # Reset the modification and access times of all files to be packaged. echo "makedist: Resetting the modification and access times of package files." -find . -exec touch -c {} \; +touch -c NEWS +find . -exec touch -r NEWS -c {} \; cd ..