summaryrefslogtreecommitdiff
path: root/tools/release/bins.pl
diff options
context:
space:
mode:
authorRafaël Carré <rafael.carre@gmail.com>2010-06-03 21:13:36 +0000
committerRafaël Carré <rafael.carre@gmail.com>2010-06-03 21:13:36 +0000
commit2438d8b58467d9498ab2009636d3df50447390bc (patch)
tree8b73295714fc1ca16b241291550ad3f27d8f51af /tools/release/bins.pl
parentbf17fcb43e61b7559507d0f1ba5def8606a491e6 (diff)
downloadrockbox-2438d8b58467d9498ab2009636d3df50447390bc.tar.gz
rockbox-2438d8b58467d9498ab2009636d3df50447390bc.zip
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
Diffstat (limited to 'tools/release/bins.pl')
-rwxr-xr-xtools/release/bins.pl10
1 files changed, 5 insertions, 5 deletions
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 {
106 `$c`; 106 `$c`;
107 107
108 print "Run 'make'\n" if($verbose); 108 print "Run 'make'\n" if($verbose);
109 `make -j 2>/dev/null`; 109 `make`;
110 110
111 print "Run 'make zip'\n" if($verbose); 111 print "Run 'make zip'\n" if($verbose);
112 `make zip 2>/dev/null`; 112 `make zip`;
113 113
114 print "Run 'make mapzip'\n" if($verbose); 114 print "Run 'make mapzip'\n" if($verbose);
115 `make mapzip 2>/dev/null`; 115 `make mapzip`;
116} 116}
117 117
118sub buildfonts { 118sub buildfonts {
@@ -127,12 +127,12 @@ sub buildfonts {
127 `$c`; 127 `$c`;
128 128
129 print "Run 'make fontzip'\n" if($verbose); 129 print "Run 'make fontzip'\n" if($verbose);
130 `make fontzip 2>/dev/null`; 130 `make fontzip`;
131} 131}
132 132
133# run make in tools first to make sure they're up-to-date 133# run make in tools first to make sure they're up-to-date
134print "cd tools && make\n" if($verbose); 134print "cd tools && make\n" if($verbose);
135`(cd tools && make ) >/dev/null 2>&1`; 135`(cd tools && make ) >/dev/null`;
136 136
137for my $b (&stablebuilds) { 137for my $b (&stablebuilds) {
138 my $configname = $builds{b}{configname} ? $builds{b}{configname} : $b; 138 my $configname = $builds{b}{configname} ? $builds{b}{configname} : $b;