[scripts][buildall] only build projects that end in .mk

This commit is contained in:
Travis Geiselbrecht
2015-01-15 16:45:54 -08:00
parent a14ed28229
commit d544af0557

View File

@@ -1,7 +1,7 @@
#!/bin/sh
# build everything in the projects directory
PROJECTS=`echo project/* | xargs -n1 basename | sed 's/\.mk//'`
PROJECTS=`echo project/*.mk | xargs -n1 basename | sed 's/\.mk//'`
FAILED=""
case `uname` in