From 9dba086dceca74ba5cb4f1a88f9f63d119368ff3 Mon Sep 17 00:00:00 2001 From: nbd Date: Tue, 31 Jul 2007 10:42:05 +0000 Subject: [PATCH] libdnet: cleanup, fix cflags git-svn-id: svn://svn.openwrt.org/openwrt/packages@8270 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- libs/libdnet/Makefile | 34 ++++++++++++---------------------- 1 file changed, 12 insertions(+), 22 deletions(-) diff --git a/libs/libdnet/Makefile b/libs/libdnet/Makefile index bf0331ebf..3de6ed481 100644 --- a/libs/libdnet/Makefile +++ b/libs/libdnet/Makefile @@ -43,29 +43,18 @@ define Package/pydnet URL:=http://sourceforge.net/projects/libdnet/ endef -define Build/Configure - (cd $(PKG_BUILD_DIR); touch \ - configure.in \ - include.m4 \ - aclocal.m4 \ - Makefile.in \ - configure \ - ); - $(call Build/Configure/Default, \ - --enable-shared \ - --enable-static \ - --without-check \ - --without-python \ - , \ - ac_cv_dnet_bsd_bpf=no \ - ) -endef +CONFIGURE_ARGS += \ + --enable-shared \ + --enable-static \ + --without-check \ + --without-python + +CONFIGURE_VARS += \ + ac_cv_dnet_bsd_bpf=no -define Build/Compile - $(MAKE) -C $(PKG_BUILD_DIR) \ - DESTDIR="$(PKG_INSTALL_DIR)" \ - all install -endef +MAKE_FLAGS += \ + DESTDIR="$(PKG_INSTALL_DIR)" \ + all install define Build/InstallDev mkdir -p $(STAGING_DIR)/usr/bin @@ -95,6 +84,7 @@ endef define Package/pydnet/install $(INSTALL_DIR) $(1)/usr/lib cd $(PKG_BUILD_DIR)/python; \ + CFLAGS="$(TARGET_CFLAGS)" \ $(STAGING_DIR)/usr/bin/hostpython ./setup.py install \ --no-compile --prefix $(PKG_INSTALL_DIR)/usr cp -a $(PKG_INSTALL_DIR)/usr/lib/python* $(1)/usr/lib/ -- 2.11.0