From 9458510650e99261806138fd7c1e9b5f5726a9f8 Mon Sep 17 00:00:00 2001 From: florian Date: Mon, 17 Mar 2014 17:14:23 +0000 Subject: [PATCH] arpd: fix passing our CFLAGS Our CFLAGS were not properly passed down to the Makefile, fix that. Signed-off-by: Florian Fainelli git-svn-id: svn://svn.openwrt.org/openwrt/packages@39936 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- net/arpd/Makefile | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/net/arpd/Makefile b/net/arpd/Makefile index 5c7bd4e77..c0cf11059 100644 --- a/net/arpd/Makefile +++ b/net/arpd/Makefile @@ -1,5 +1,5 @@ # -# Copyright (C) 2006-2009 OpenWrt.org +# Copyright (C) 2006-2014 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. @@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=arpd PKG_VERSION:=0.2 -PKG_RELEASE:=2 +PKG_RELEASE:=3 PKG_MD5SUM:=e2911fa9de1b92ef50deda1489ae944d PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz @@ -39,12 +39,9 @@ define Build/Configure ) endef -define Build/Compile - $(MAKE) -C $(PKG_BUILD_DIR) \ - CCOPT="$(TARGET_CFLAGS)" \ - INCLS="-I. $(TARGET_CPPFLAGS)" \ - LIBS="$(TARGET_LDFLAGS) -lpcap -ldnet -levent" -endef +MAKE_FLAGS += \ + INCLUDES="$(TARGET_CFLAGS) $(TARGET_CPPFLAGS)" \ + LIBS="$(TARGET_LDFLAGS) -lpcap -ldnet -levent" define Package/arpd/install $(INSTALL_DIR) $(1)/usr/sbin