Makefile: avoid circular deps for autotools pkgs

This commit is contained in:
Tony Theodore 2018-02-17 14:00:51 +11:00
parent 00ce27030d
commit a68a0d9342
1 changed files with 1 additions and 1 deletions

View File

@ -444,7 +444,7 @@ MXE_CONF_PKGS := mxe-conf
# autotools/cmake are generally always required, but separate them
# for the case of `make gcc` which should only build real deps.
AUTOTOOLS_PKGS := $(filter-out $(MXE_CONF_PKGS) $(BUILD)~autotools, \
AUTOTOOLS_PKGS := $(filter-out $(MXE_CONF_PKGS) $(BUILD)~autotools autoconf automake libtool, \
$(sort $(basename $(notdir \
$(shell grep -l 'auto[conf\|reconf\|gen\|make]\|aclocal\|LIBTOOL' \
$(addsuffix /*.mk,$(MXE_PLUGIN_DIRS)))))))