diff options
author | Andrew Manison <amanison@anselsystems.com> | 2010-04-28 14:33:44 +0000 |
---|---|---|
committer | Andrew Manison <amanison@anselsystems.com> | 2010-04-28 14:33:44 +0000 |
commit | 64723824fd317225bd675140261c8514acf4cff2 (patch) | |
tree | 97bc1842916d25e03a75d15cb17427d32a6a2d36 /makeall.sh | |
parent | 0e1bf50148e1802f3f010d5df4354de0c56924d2 (diff) | |
download | aports-64723824fd317225bd675140261c8514acf4cff2.tar.bz2 aports-64723824fd317225bd675140261c8514acf4cff2.tar.xz |
Added rebuild-alpine.sh script, for running in a build bot. Tweaks to top-level makefile.
Diffstat (limited to 'makeall.sh')
-rwxr-xr-x | makeall.sh | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/makeall.sh b/makeall.sh index 1566f09026..10966c3fdf 100755 --- a/makeall.sh +++ b/makeall.sh @@ -1,7 +1,8 @@ #!/bin/sh -for p in 1 2 3 4 5 6 +for p in 1 2 3 do echo "============>>> ERROR: Pass $p <<<============" - make main 2>&1 | tee makelog-pass-$p.txt | grep ">>> ERROR:" + make main 2>&1 | tee makelog-pass-$p-main.txt | grep ">>> ERROR:" + make testing 2>&1 | tee makelog-pass-$p-testing.txt | grep ">>> ERROR:" done |