AutoSplit will fail to create an index for files whose modification time is 0 because its default time for a non-existent index is 1. Set this default time to -1 instead. --- perl-5.16.1/cpan/AutoLoader/lib/AutoSplit.pm.orig 2012-02-14 22:44:36.000000000 -0600 +++ perl-5.16.1/cpan/AutoLoader/lib/AutoSplit.pm 2015-09-09 19:59:22.208708921 -0500 @@ -361,7 +361,7 @@ my($al_idx_file) = catfile($autodir, $modpname, $IndexFile); if ($check_mod_time){ - my($al_ts_time) = (stat("$al_idx_file"))[9] || 1; + my($al_ts_time) = (stat("$al_idx_file"))[9] || -1; if ($al_ts_time >= $pm_mod_time and $al_ts_time >= $self_mod_time){ print "AutoSplit skipped ($al_idx_file newer than $filename)\n" change='this.form.submit();'> Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/build-aux/compile-as-derivation.scm
mit/etc/git?id=f8b10932c86cf4c1657a67e8c484d76f757b64bd'>Add git configuration templates to improve diff hunk header detection....
AgeCommit message (Expand)Author
2018-09-02compile-as-derivation: Adjust %load-compiled-path....Ludovic Courtès
2018-06-09pull: Install the new Guix in a profile....Ludovic Courtès
2018-06-09self: Produce a complete package with the 'guix' command....Ludovic Courtès
2018-04-08build: Add 'as-derivation' target....Ludovic Courtès
Sarah Morgensen
2020-12-14maint: Only run `make authenticate` when pushing commits....Leo Famulari