mirror of
https://github.com/openwrt/openwrt.git
synced 2025-02-07 11:30:37 +00:00
package/kernel: Fix AddDepends/SetDepends calls with make 3.82
The module definitions depend on 001-depends.mk being the first included, but make 3.82 does not sort the results of wildcards anymore, so do an explicit sort of the includes. Found by Philip Prindeville, thanks! SVN-Revision: 27982
This commit is contained in:
parent
f1e7045d30
commit
44b272fd58
@ -45,5 +45,5 @@ endef
|
|||||||
|
|
||||||
$(eval $(if $(DUMP),,$(call BuildPackage,kernel)))
|
$(eval $(if $(DUMP),,$(call BuildPackage,kernel)))
|
||||||
|
|
||||||
include ./modules/*.mk
|
include $(sort $(wildcard ./modules/*.mk))
|
||||||
-include $(TOPDIR)/target/linux/*/modules.mk
|
-include $(TOPDIR)/target/linux/*/modules.mk
|
||||||
|
Loading…
x
Reference in New Issue
Block a user