This is a live mirror of the Perl 5 development currently hosted at
https://github.com/perl/perl5
https://perl5.git.perl.org
/
perl5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
58a3bd5
)
buildperl.pl: Don't die if make install returns >0
author
Karl Williamson
<khw@cpan.org>
Mon, 8 Jul 2019 20:32:29 +0000
(14:32 -0600)
committer
Nicolas R
<atoomic@cpan.org>
Fri, 27 Sep 2019 22:39:30 +0000
(16:39 -0600)
Sometimes 'make install' returns non-success even if it actually
installed enough for our purposes.
(cherry picked from commit
c3f61c3653ab3e67676930f49fd5e16f45e3df4f
)
Signed-off-by: Nicolas R <atoomic@cpan.org>
dist/Devel-PPPort/devel/buildperl.pl
patch
|
blob
|
blame
|
history
diff --git
a/dist/Devel-PPPort/devel/buildperl.pl
b/dist/Devel-PPPort/devel/buildperl.pl
index
9844ef4
..
f15b851
100644
(file)
--- a/
dist/Devel-PPPort/devel/buildperl.pl
+++ b/
dist/Devel-PPPort/devel/buildperl.pl
@@
-367,7
+367,7
@@
sub build_and_install
run_or_die("make $job_string all");
run("TEST_JOBS=$opt{jobs} make $job_string test") if $opt{test};
if ($opt{install}) {
- run
_or_die
("make $job_string install");
+ run("make $job_string install");
}
else {
print "\n*** NOT INSTALLING PERL ***\n\n";