From 2438d8b58467d9498ab2009636d3df50447390bc Mon Sep 17 00:00:00 2001 From: Rafaël Carré Date: Thu, 3 Jun 2010 21:13:36 +0000 Subject: 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/trunk@26533 a1c6a512-1295-4272-9138-f99709370657 --- tools/release/bins.pl | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'tools/release/bins.pl') diff --git a/tools/release/bins.pl b/tools/release/bins.pl index ab8282051c..aff03508ae 100755 --- a/tools/release/bins.pl +++ b/tools/release/bins.pl @@ -106,13 +106,13 @@ sub buildit { `$c`; print "Run 'make'\n" if($verbose); - `make -j 2>/dev/null`; + `make`; print "Run 'make zip'\n" if($verbose); - `make zip 2>/dev/null`; + `make zip`; print "Run 'make mapzip'\n" if($verbose); - `make mapzip 2>/dev/null`; + `make mapzip`; } sub buildfonts { @@ -127,12 +127,12 @@ sub buildfonts { `$c`; 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 print "cd tools && make\n" if($verbose); -`(cd tools && make ) >/dev/null 2>&1`; +`(cd tools && make ) >/dev/null`; for my $b (&stablebuilds) { my $configname = $builds{b}{configname} ? $builds{b}{configname} : $b; -- cgit v1.2.3