summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorBoris Nagaev <bnagaev@gmail.com>2016-02-23 01:00:21 (GMT)
committerBoris Nagaev <bnagaev@gmail.com>2016-02-23 14:09:49 (GMT)
commitf11e66f36554e60dedd5cff8553aa927e520380f (patch)
tree0a23246b6439ed2c06cc6a6b9b39c2170c0e2e0d /Makefile
parent89e4d7c0cbb2762dd01d69f1f97df79e1496058b (diff)
downloadmxe-f11e66f36554e60dedd5cff8553aa927e520380f.zip
mxe-f11e66f36554e60dedd5cff8553aa927e520380f.tar.gz
mxe-f11e66f36554e60dedd5cff8553aa927e520380f.tar.bz2
fix dependencies of build-matrix.html
Dependencies of build-matrix.html were written without regarding plugins. It resulted in the following error on Debian Wheezy (which uses plugin "plugins/native/wheezy/"): $ make build-matrix.html make: *** No rule to make target `src/autoconf.mk', needed by `build-matrix.html'. Stop.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 7668a70..3e0ed04 100644
--- a/Makefile
+++ b/Makefile
@@ -701,7 +701,7 @@ cleanup-deps-style:
|| echo '*** Multi-line deps are mangled ***' && comm -3 tmp-$@-pre tmp-$@-post
@rm -f $(TOP_DIR)/tmp-$@-*
-build-matrix.html: $(foreach PKG,$(PKGS), $(TOP_DIR)/src/$(PKG).mk)
+build-matrix.html: $(foreach 1,$(PKGS),$(PKG_MAKEFILES))
@echo '<!DOCTYPE html>' > $@
@echo '<html>' >> $@
@echo '<head>' >> $@