This commit is contained in:
Andrew Tridgell 2012-12-19 11:02:33 +11:00
parent 306dc926ff
commit 958b27f06d

View File

@ -22,7 +22,9 @@ for b in $TESTS; do
if [ -r nobuild.txt ]; then if [ -r nobuild.txt ]; then
echo "Skipping build of $b" echo "Skipping build of $b"
else else
make $targets for t in $targets; do
make $t
done
fi fi
popd popd
done done