浏览代码

tools/elfutils: depend on m4

Some buildbots fail to build elfutils due to m4 being missing. Add m4 as
a dependency for elfutils to fix this.

Fixes: ad79b9271949 ("elfutils: move host build to tools")
Signed-off-by: Stijn Tintel <[email protected]>
Stijn Tintel 3 年之前
父节点
当前提交
16e9ccd5fa
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      tools/Makefile

+ 1 - 1
tools/Makefile

@@ -85,7 +85,7 @@ ifeq ($(HOST_OS),Darwin)
   tools-y += bash
 else
   $(curdir)/dwarves/compile += $(curdir)/elfutils/compile
-  $(curdir)/elfutils/compile := $(curdir)/zlib/compile
+  $(curdir)/elfutils/compile := $(curdir)/m4/compile $(curdir)/zlib/compile
   tools-$(CONFIG_DWARVES) += dwarves
   tools-y += elfutils
 endif