From 856a4c271f31f6a021bf525cc9d3ba0494928191 Mon Sep 17 00:00:00 2001 From: florian Date: Sat, 8 Mar 2014 00:57:12 +0000 Subject: [PATCH] lsof: fix passing TARGET_CFLAGS The special Configure script expects LSOF_CFGF instead of LSOF_CFGC. Signed-off-by: Florian Fainelli git-svn-id: svn://svn.openwrt.org/openwrt/packages@39814 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- utils/lsof/Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/utils/lsof/Makefile b/utils/lsof/Makefile index bcf6b8045..d5dfa174e 100644 --- a/utils/lsof/Makefile +++ b/utils/lsof/Makefile @@ -1,5 +1,5 @@ # -# Copyright (C) 2007-2012 OpenWrt.org +# Copyright (C) 2007-2014 OpenWrt.org # # This is free software, licensed under the GNU General Public License v2. # See /LICENSE for more information. @@ -10,7 +10,7 @@ include $(INCLUDE_DIR)/kernel.mk PKG_NAME:=lsof PKG_VERSION:=4.86 -PKG_RELEASE:=1 +PKG_RELEASE:=2 PKG_SOURCE:=$(PKG_NAME)_$(PKG_VERSION)+dfsg.orig.tar.gz PKG_SOURCE_URL:=http://ftp2.de.debian.org/debian/pool/main/l/lsof @@ -36,7 +36,7 @@ define Build/Configure LSOF_CC="$(TARGET_CC)" \ LSOF_INCLUDE="-I$(STAGING_DIR)/usr/include" \ LSOF_VSTR="$(LINUX_VERSION)" \ - LSOF_CFGC="$(TARGET_CFLAGS)" \ + LSOF_CFGF="$(TARGET_CFLAGS)" \ LSOF_CFGL="$(TARGET_LDFLAGS)" \ LSOF_AR="$(TARGET_CROSS)ar cr" \ LSOF_RANLIB="$(TARGET_CROSS)ranlib" \