Skip to content
Commits on Source (2)
......@@ -449,8 +449,8 @@ configure_recipe(){
# beginning of the epoch, so work around this pair of silliness
# by setting old mtimes to 1998
reftime=$(mktemp)
touch -d 1975-01-01 "${reftime}"
find . \! -newer "${reftime}" -exec touch -d 1998-01-01 {} \;
touch -d "1975-01-01 UTC" "${reftime}"
find . \! -newer "${reftime}" -exec touch -d "1998-01-01 UTC" {} \;
rm "${reftime}"
hc=`packages_hc`
......
haskell-devscripts (0.15.1) unstable; urgency=medium
* Patch from Chris Lamb to explicitly set UTC for 1975 hack.
closes: #933834.
-- Clint Adams <clint@debian.org> Sun, 04 Aug 2019 09:15:16 -0400
haskell-devscripts (0.15.0) unstable; urgency=medium
* Work around old timestamps in new Hackage tarballs.
......