summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTimothy Gu <timothygu99@gmail.com>2014-10-14 01:26:25 (GMT)
committerTimothy Gu <timothygu99@gmail.com>2014-10-14 01:32:31 (GMT)
commit30d33ef5dbb9884e25ea8f8eea3755f846ae7e6e (patch)
treeb362f7f9ec54b47ab564d268ef0d442983e5c386
parent2bf824b5a7736a36b36055a30cd58ed7f65a189d (diff)
downloadmxe-30d33ef5dbb9884e25ea8f8eea3755f846ae7e6e.zip
mxe-30d33ef5dbb9884e25ea8f8eea3755f846ae7e6e.tar.gz
mxe-30d33ef5dbb9884e25ea8f8eea3755f846ae7e6e.tar.bz2
Fix counting of build-only packages
Signed-off-by: Timothy Gu <timothygu99@gmail.com>
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index d9af8bf..c248665 100644
--- a/Makefile
+++ b/Makefile
@@ -621,7 +621,8 @@ build-matrix.html: $(foreach PKG,$(PKGS), $(TOP_DIR)/src/$(PKG).mk)
<td class="unsupported">&#x2717;</td>)\n \
</tr>\n' >> $@ $(newline) \
$(if $($(PKG)_VIRTUAL), \
- $(eval VIRTUAL_PKGCOUNT := $(call inc,$(VIRTUAL_PKGCOUNT)))) \
+ $(eval VIRTUAL_PKGCOUNT := $(call inc,$(VIRTUAL_PKGCOUNT))) \
+ $(eval $(PKG)_BUILD_ONLY := $(false))) \
$(if $($(PKG)_BUILD_ONLY), \
$(eval BUILD_ONLY_PKGCOUNT := $(call inc,$(BUILD_ONLY_PKGCOUNT)))))
@echo '<tr>' >> $@