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" ;'> Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/cmake.scm
AgeCommit message (Expand)Author
2023-10-24gnu: cmake-minimal: Remove ‘hidden’ property....This makes ‘cmake-minimal’ accessible to users and additionally allows for input rewriting, as discussed at <https://issues.guix.gnu.org/65665#17>. * gnu/packages/cmake.scm (cmake-minimal)[properties]: New field. Ludovic Courtès
2023-07-20gnu: cmake-minimal: Skip tests on the Hurd....* gnu/packages/cmake.scm (cmake-minimal)[arguments]: When building natively on the Hurd, add %common-disabled-tests/hurd to skipped tests in phase 'check'. Janneke Nieuwenhuizen
2023-07-20gnu: cmake-bootstrap: Fix build for the Hurd....* gnu/packages/cmake.scm (%common-disabled-tests/hurd): New variable. (cmake-bootstrap) [inputs]: Include libuv for the Hurd too. [arguments]: Add %common-disabled-tests/hurd to #:make-flags for the Hurd. Also add a 'patch-hurd' phase to fix the build. Janneke Nieuwenhuizen
2023-06-17gnu: Use target-hurd?, system-hurd? instead of hurd-target?, hurd-system?....* gnu/packages/hurd.scm (hurd-target?): Remove. (hurd-system?): Move to... * guix/utils.scm (system-hurd?): ...here. * gnu/packages/*: Update all users, removing (gnu packages hurd) include where now unused. Janneke Nieuwenhuizen
2023-03-02Merge remote-tracking branch 'savannah/master' into core-updates...Conflicts: gnu/local.mk gnu/packages/autotools.scm gnu/packages/cmake.scm gnu/packages/gnuzilla.scm gnu/packages/haskell.scm gnu/packages/pdf.scm gnu/packages/python-xyz.scm gnu/packages/samba.scm gnu/packages/tex.scm gnu/packages/tls.scm gnu/packages/wxwidgets.scm Christopher Baines