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/pkg-config.scm
AgeCommit message (Expand)Author
2023-08-26gnu: pkgconf: Update to 2.0.2....* gnu/packages/pkg-config.scm (pkgconf): Update to 2.0.2. Signed-off-by: 宋文武 <iyzsong@member.fsf.org> Zheng Junjie
2023-03-06gnu: perl-extutils-pkgconfig: Support cross-compilation....* guix/search-paths.scm ($PKG_CONFIG_PATH): New variable. * gnu/packages/pkg-config.scm (%pkg-config): Use it. * gnu/packages/perl.scm (perl-extutils-pkgconfig-for-target): New procedure. (perl-extutils-pkgconfig): Turn into a syntax that conditionally expands to... (cross-perl-extutils-pkgconfig): ... this when %current-target-system is set, or... (%perl-extutils-pkgconfig): ... this in a native compilation context. [arguments]: New field. [propagated-inputs]: Turn into... [native-inputs]: ... this. [native-search-paths]: New field. Maxim Cournoyer
2022-09-13gnu: Add pkgconf....* gnu/packages/pkg-config.scm (pkgconf): New variable. Maxim Cournoyer