mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-13 18:17:39 -04:00
bins.pl script: don't hide errors, they might be useful
Don't use make -j as it uses an unlimited number of jobs and can severely slow down machines and/or make the build fail if processes can't be created git-svn-id: svn://svn.rockbox.org/rockbox/branches/v3_6@26532 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
06fac736f9
commit
01fdf827f2
1 changed files with 5 additions and 5 deletions
|
@ -106,13 +106,13 @@ sub buildit {
|
||||||
`$c`;
|
`$c`;
|
||||||
|
|
||||||
print "Run 'make'\n" if($verbose);
|
print "Run 'make'\n" if($verbose);
|
||||||
`make -j 2>/dev/null`;
|
`make`;
|
||||||
|
|
||||||
print "Run 'make zip'\n" if($verbose);
|
print "Run 'make zip'\n" if($verbose);
|
||||||
`make zip 2>/dev/null`;
|
`make zip`;
|
||||||
|
|
||||||
print "Run 'make mapzip'\n" if($verbose);
|
print "Run 'make mapzip'\n" if($verbose);
|
||||||
`make mapzip 2>/dev/null`;
|
`make mapzip`;
|
||||||
}
|
}
|
||||||
|
|
||||||
sub buildfonts {
|
sub buildfonts {
|
||||||
|
@ -127,12 +127,12 @@ sub buildfonts {
|
||||||
`$c`;
|
`$c`;
|
||||||
|
|
||||||
print "Run 'make fontzip'\n" if($verbose);
|
print "Run 'make fontzip'\n" if($verbose);
|
||||||
`make fontzip 2>/dev/null`;
|
`make fontzip`;
|
||||||
}
|
}
|
||||||
|
|
||||||
# run make in tools first to make sure they're up-to-date
|
# run make in tools first to make sure they're up-to-date
|
||||||
print "cd tools && make\n" if($verbose);
|
print "cd tools && make\n" if($verbose);
|
||||||
`(cd tools && make ) >/dev/null 2>&1`;
|
`(cd tools && make ) >/dev/null`;
|
||||||
|
|
||||||
for my $b (&stablebuilds) {
|
for my $b (&stablebuilds) {
|
||||||
my $configname = $builds{b}{configname} ? $builds{b}{configname} : $b;
|
my $configname = $builds{b}{configname} ? $builds{b}{configname} : $b;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue