From: Florian Fainelli Date: Mon, 13 Feb 2017 02:34:53 +0000 (-0800) Subject: rssileds: Fix build with external toolchains X-Git-Tag: v18.06.0-rc1~3456 X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fopenwrt.git;a=commitdiff_plain;h=30159b3886849f94cd065ecece7ac988bfb89548 rssileds: Fix build with external toolchains Pass down TARGET_CPPFLAGS for path to header files, and append the libraries we depend on in TARGET_LDFLAGS. Put TARGET_LDFLAGS at the end of the command line as is required by modern GCC/binutils. Signed-off-by: Florian Fainelli --- diff --git a/package/network/utils/rssileds/Makefile b/package/network/utils/rssileds/Makefile index e475bcd5bb..d3fb66adc9 100644 --- a/package/network/utils/rssileds/Makefile +++ b/package/network/utils/rssileds/Makefile @@ -29,9 +29,11 @@ endef define Build/Configure endef +TARGET_LDFLAGS += -liwinfo -luci -lubox -lnl-tiny + define Build/Compile - $(TARGET_CC) $(TARGET_CFLAGS) -Wall -liwinfo \ - -o $(PKG_BUILD_DIR)/rssileds $(PKG_BUILD_DIR)/rssileds.c + $(TARGET_CC) $(TARGET_CFLAGS) $(TARGET_CPPFLAGS) -Wall \ + -o $(PKG_BUILD_DIR)/rssileds $(PKG_BUILD_DIR)/rssileds.c $(TARGET_LDFLAGS) endef define Package/rssileds/install