ensure all files have same date in official archives

This commit is contained in:
Remi Collet 2020-06-25 14:38:49 +02:00 committed by Remi Collet
parent 94b637de5b
commit 5c37715dfd

View File

@ -159,7 +159,8 @@ fi
# Reset the modification and access times of all files to be packaged. # Reset the modification and access times of all files to be packaged.
echo "makedist: Resetting the modification and access times of package files." 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 .. cd ..