Merge pull request #4966 from kaspar030/buildtest_always_rebuild

make: buildtest: build with -B
This commit is contained in:
Kaspar Schleiser 2016-03-06 00:44:31 +01:00
commit d005861f5c

View File

@ -62,7 +62,7 @@ buildtest:
WERROR=$${WERROR} \ WERROR=$${WERROR} \
LTO=$${LTO} \ LTO=$${LTO} \
TOOLCHAIN=$${TOOLCHAIN} \ TOOLCHAIN=$${TOOLCHAIN} \
$(MAKE) -j$(NPROC) 2>&1) ; \ $(MAKE) -j$(NPROC) -B 2>&1) ; \
if [ "$${?}" = "0" ]; then \ if [ "$${?}" = "0" ]; then \
${COLOR_ECHO} "${COLOR_GREEN}success${COLOR_RESET}"; \ ${COLOR_ECHO} "${COLOR_GREEN}success${COLOR_RESET}"; \
if [ -n "$${BUILDTEST_VERBOSE}" ]; then \ if [ -n "$${BUILDTEST_VERBOSE}" ]; then \