diff options
author | Masahiro Yamada <yamada.m@jp.panasonic.com> | 2014-08-22 14:33:40 +0900 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2014-08-28 17:18:48 -0400 |
commit | 94ab8f411cdc124c2bfd4ce5702c3802428fa534 (patch) | |
tree | e195a222d213be7246591fce1dcfb972853b4638 /MAKEALL | |
parent | 9c2d60c37866e302600ff8aa479b834712478403 (diff) |
MAKEALL: run genboardscfg.py all the time
This commit makes sure boards.cfg is up to date before starting
the build tests. tools/genboardscfg.py exits immediately printing
"boards.cfg is up to date. Nothing to do." when boards.cfg is
already new.
Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Diffstat (limited to 'MAKEALL')
-rwxr-xr-x | MAKEALL | 11 |
1 files changed, 4 insertions, 7 deletions
@@ -171,13 +171,10 @@ GNU_MAKE=$(scripts/show-gnu-make) || { # echo "Remaining arguments:" # for arg do echo '--> '"\`$arg'" ; done -if [ ! -r boards.cfg ]; then - echo "Could not find boards.cfg" - tools/genboardscfg.py || { - echo "Failed to generate boards.cfg" >&2 - exit 1 - } -fi +tools/genboardscfg.py || { + echo "Failed to generate boards.cfg" >&2 + exit 1 +} FILTER="\$1 !~ /^#/" [ "$opt_a" ] && FILTER="${FILTER} && $opt_a" |