summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2020-06-25 14:38:49 +0200
committerRemi Collet <remi@php.net>2020-06-25 14:59:10 +0200
commit5c37715dfdcea7b7d34d1ceaef71c93d925c6db5 (patch)
tree4e1a3f31bd757b7a802bee8dd7aacac911079ac7 /scripts
parent94b637de5bfe4a561b4815e8b85a9432b9118cc6 (diff)
downloadphp-git-5c37715dfdcea7b7d34d1ceaef71c93d925c6db5.tar.gz
ensure all files have same date in official archives
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/dev/makedist3
1 files changed, 2 insertions, 1 deletions
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 ..