lede-packages-rs

git clone git://archive.git.mtrnord.blog/MTRNord/lede-packages-rs.git
Log | Files | Refs | README | LICENSE

commit dfe9dfd6e937ad0e2a6ffd121bf84b5ec9b54da3
parent 2e917e1cd98121b3b6d552ee894ba35e70a7f341
Author: Daniel Dickinson <openwrt@daniel.thecshore.com>
Date:   Fri, 25 Mar 2016 20:24:06 -0400

net/wavemon: Was incorrectly using host netlink headers

TARGET_CFLAGS was pointing to /usr/include/libnl3 instead
of $(STAGING_DIR)/usr/include/libnl3

Signed-off-by: Daniel Dickinson <openwrt@daniel.thecshore.com>
Signed-off-by: Jonathan McCrohan <jmccrohan@gmail.com>

Diffstat:
Mnet/wavemon/Makefile | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net/wavemon/Makefile b/net/wavemon/Makefile @@ -45,7 +45,7 @@ endef CONFIGURE_VARS += \ ac_cv_lib_cap_cap_get_flag=no -TARGET_CFLAGS += -pthread -I/usr/include/libnl3 +TARGET_CFLAGS += -pthread -I$(STAGING_DIR)/usr/include/libnl3 MAKE_FLAGS += \ CFLAGS="$(TARGET_CFLAGS) -L$(STAGING_DIR)/usr/lib -I$(STAGING_DIR)/usr/include"