In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/63f9ec3008baf7d655f1b9c0f2c6f81f970c65f0?hp=2ba3ed0cc50ab0b9ba47218e86872c324f31abd4>
- Log ----------------------------------------------------------------- commit 63f9ec3008baf7d655f1b9c0f2c6f81f970c65f0 Author: Paul Johnson <p...@pjcj.net> Date: Thu Nov 17 21:20:15 2011 +0100 Detect whether ccache is available to bisect. ccache will save time during a bisect but it may not always be availble. Teach bisect-runner.pl to only use it if it is available. ----------------------------------------------------------------------- Summary of changes: Porting/bisect-runner.pl | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/Porting/bisect-runner.pl b/Porting/bisect-runner.pl index 5896d3a..fea722b 100755 --- a/Porting/bisect-runner.pl +++ b/Porting/bisect-runner.pl @@ -53,7 +53,7 @@ my %defines = ( usedevel => '', optimize => '-g', - cc => 'ccache cc', + cc => (`ccache --version`, $?) ? 'cc' : 'ccache cc', ld => 'cc', ($linux64 ? (libpth => \@paths) : ()), ); -- Perl5 Master Repository