diff options
author | Timothy Gu <timothygu99@gmail.com> | 2014-10-14 01:26:25 (GMT) |
---|---|---|
committer | Timothy Gu <timothygu99@gmail.com> | 2014-10-14 01:32:31 (GMT) |
commit | 30d33ef5dbb9884e25ea8f8eea3755f846ae7e6e (patch) | |
tree | b362f7f9ec54b47ab564d268ef0d442983e5c386 /Makefile | |
parent | 2bf824b5a7736a36b36055a30cd58ed7f65a189d (diff) | |
download | mxe-30d33ef5dbb9884e25ea8f8eea3755f846ae7e6e.zip mxe-30d33ef5dbb9884e25ea8f8eea3755f846ae7e6e.tar.gz mxe-30d33ef5dbb9884e25ea8f8eea3755f846ae7e6e.tar.bz2 |
Fix counting of build-only packages
Signed-off-by: Timothy Gu <timothygu99@gmail.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -621,7 +621,8 @@ build-matrix.html: $(foreach PKG,$(PKGS), $(TOP_DIR)/src/$(PKG).mk) <td class="unsupported">✗</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>' >> $@ |