aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdrian Schmutzler <freifunk@adrianschmutzler.de>2020-02-20 18:38:04 +0100
committerAdrian Schmutzler <freifunk@adrianschmutzler.de>2020-03-11 14:56:03 +0100
commitb32129d30ba20c871a301c8627221b2467e60bf0 (patch)
treef1f5b7cb9b6635a0cf8ac7e6432d7b2dd08a9528
parent9da31d0fb402f5ee3f3973ee07625942634a38fb (diff)
downloadupstream-openwrt-19.07.tar.gz
upstream-openwrt-19.07.tar.bz2
upstream-openwrt-19.07.zip
rssileds: add dependencies based on LDFLAGSopenwrt-19.07
This adds the direct dependencies introduced by TARGET_LDFLAGS to the package's DEPENDS variable. This was found by accidentally building rssileds on octeon, which resulted in: "Package rssileds is missing dependencies for the following libraries: libnl-tiny.so" Though the dependencies are provided when building for the relevant targets ar71xx, ath79 and ramips, it seems more tidy to specify them explicitly. Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de> (cherry picked from commit a5b2c6f5edef1958d8789ff9bd89b408893b4358)
-rw-r--r--package/network/utils/rssileds/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/package/network/utils/rssileds/Makefile b/package/network/utils/rssileds/Makefile
index 27cdb4c67c..7a59314693 100644
--- a/package/network/utils/rssileds/Makefile
+++ b/package/network/utils/rssileds/Makefile
@@ -18,7 +18,7 @@ define Package/rssileds
SECTION:=net
CATEGORY:=Network
TITLE:=RSSI real-time LED indicator
- DEPENDS:=+libiwinfo
+ DEPENDS:=+libiwinfo +libnl-tiny +libubox +libuci
MAINTAINER:=Daniel Golle <dgolle@allnet.de>
endef