summaryrefslogtreecommitdiffstats
path: root/tools/Makefile
diff options
context:
space:
mode:
authorStijn Tintel <stijn@linux-ipv6.be>2022-05-18 16:15:09 +0300
committerStijn Tintel <stijn@linux-ipv6.be>2022-05-18 16:17:35 +0300
commit16e9ccd5fa39f3a32bca65831a881d9376d921bd (patch)
treee5abe4171c17c7268eae176a2c6b01c6e92bbd26 /tools/Makefile
parent8f5c9a7d94dc7f945dbe1eea2d3fc508c477b788 (diff)
downloadopenwrt-16e9ccd5fa39f3a32bca65831a881d9376d921bd.tar.gz
openwrt-16e9ccd5fa39f3a32bca65831a881d9376d921bd.tar.bz2
openwrt-16e9ccd5fa39f3a32bca65831a881d9376d921bd.zip
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 <stijn@linux-ipv6.be>
Diffstat (limited to 'tools/Makefile')
-rw-r--r--tools/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/Makefile b/tools/Makefile
index 507971c6d5..be1a23ed51 100644
--- a/tools/Makefile
+++ b/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