diff options
| author | Florian Fainelli | 2022-01-08 04:50:50 +0000 |
|---|---|---|
| committer | Florian Fainelli | 2022-01-08 04:50:50 +0000 |
| commit | a372946e6080b253f42ab1d3af97f4929c269ed9 (patch) | |
| tree | 3e19d73000e70515a48ea334a1da95fee00bb707 | |
| parent | 3fe253c6abc2ccc02ea789cffc47761b2381c6ca (diff) | |
| download | openwrt-a372946e6080b253f42ab1d3af97f4929c269ed9.tar.gz | |
elfutils: Add missing musl-fts dependency
libdw depends on libfts.so when building with the musl-libc library, add
this missing dependency.
Fixes: 6835ea13f0fa ("elfutils: update to 0.186")
Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
| -rw-r--r-- | package/libs/elfutils/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/libs/elfutils/Makefile b/package/libs/elfutils/Makefile index f9a350f9fe..9aa78d8352 100644 --- a/package/libs/elfutils/Makefile +++ b/package/libs/elfutils/Makefile @@ -44,7 +44,7 @@ endef define Package/libdw $(call Package/elfutils/Default) - DEPENDS:=+libelf +libbz2 + DEPENDS:=+libelf +libbz2 +USE_MUSL:musl-fts TITLE+= (libdw) endef |