gnu: http-server: Fix build on i686-linux.
[jackhill/guix/guix.git] / gnu / packages / patches / perl-autosplit-default-time.patch
CommitLineData
c6a3635d
EB
1AutoSplit will fail to create an index for files whose modification time is 0
2because its default time for a non-existent index is 1. Set this default time
3to -1 instead.
4
5--- perl-5.16.1/cpan/AutoLoader/lib/AutoSplit.pm.orig 2012-02-14 22:44:36.000000000 -0600
6+++ perl-5.16.1/cpan/AutoLoader/lib/AutoSplit.pm 2015-09-09 19:59:22.208708921 -0500
7@@ -361,7 +361,7 @@
8 my($al_idx_file) = catfile($autodir, $modpname, $IndexFile);
9
10 if ($check_mod_time){
11- my($al_ts_time) = (stat("$al_idx_file"))[9] || 1;
12+ my($al_ts_time) = (stat("$al_idx_file"))[9] || -1;
13 if ($al_ts_time >= $pm_mod_time and
14 $al_ts_time >= $self_mod_time){
15 print "AutoSplit skipped ($al_idx_file newer than $filename)\n"