diff options
author | Florian Fainelli <f.fainelli@gmail.com> | 2022-01-07 20:50:50 -0800 |
---|---|---|
committer | Florian Fainelli <f.fainelli@gmail.com> | 2022-01-07 20:50:50 -0800 |
commit | a372946e6080b253f42ab1d3af97f4929c269ed9 (patch) | |
tree | 3e19d73000e70515a48ea334a1da95fee00bb707 /package | |
parent | 3fe253c6abc2ccc02ea789cffc47761b2381c6ca (diff) | |
download | upstream-a372946e6080b253f42ab1d3af97f4929c269ed9.tar.gz upstream-a372946e6080b253f42ab1d3af97f4929c269ed9.tar.bz2 upstream-a372946e6080b253f42ab1d3af97f4929c269ed9.zip |
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>
Diffstat (limited to 'package')
-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 |