summaryrefslogtreecommitdiffstats
path: root/makeall.sh
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2010-07-19 16:15:40 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2010-07-19 16:15:40 +0000
commitbf04f16d7e5ed54e3af1425ef6a7b7dd5c34fc0c (patch)
tree8a945a6b93bc247d3d131c48e33ba9a8db4a4be5 /makeall.sh
parentcb6a79e43338a70e2962b8b38b59a9000fd9c0d2 (diff)
parent6b686a9c7df44a3fa088b139e9852424de23869f (diff)
downloadaports-bf04f16d7e5ed54e3af1425ef6a7b7dd5c34fc0c.tar.bz2
aports-bf04f16d7e5ed54e3af1425ef6a7b7dd5c34fc0c.tar.xz
Merge remote branch 'amanison/master'
Diffstat (limited to 'makeall.sh')
-rwxr-xr-xmakeall.sh8
1 files changed, 8 insertions, 0 deletions
diff --git a/makeall.sh b/makeall.sh
new file mode 100755
index 000000000..10966c3fd
--- /dev/null
+++ b/makeall.sh
@@ -0,0 +1,8 @@
+#!/bin/sh
+
+for p in 1 2 3
+do
+ echo "============>>> ERROR: Pass $p <<<============"
+ 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