summaryrefslogtreecommitdiffstats
path: root/makeall.sh
diff options
context:
space:
mode:
authorAndrew Manison <amanison@anselsystems.com>2010-04-28 14:33:44 +0000
committerAndrew Manison <amanison@anselsystems.com>2010-04-28 14:33:44 +0000
commit64723824fd317225bd675140261c8514acf4cff2 (patch)
tree97bc1842916d25e03a75d15cb17427d32a6a2d36 /makeall.sh
parent0e1bf50148e1802f3f010d5df4354de0c56924d2 (diff)
downloadaports-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-xmakeall.sh5
1 files changed, 3 insertions, 2 deletions
diff --git a/makeall.sh b/makeall.sh
index 1566f0902..10966c3fd 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