Natpmp defaults to expecting iptables to be in /sbin; this patch points it to /usr/sbin.

Signed-off-by: Conrad Hirano <openwrt at hirano.fastmail.fm>

git-svn-id: svn://svn.openwrt.org/openwrt/packages@12937 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
agb 2008-10-09 19:48:27 +00:00
parent 830865a817
commit dd9754ce85

View File

@ -2,7 +2,7 @@ include $(TOPDIR)/rules.mk
PKG_NAME:=natpmp
PKG_VERSION:=0.2.3
PKG_RELEASE:=1
PKG_RELEASE:=2
PKG_SOURCE_URL:=http://download.savannah.nongnu.org/releases/natpmp/
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
@ -33,7 +33,7 @@ define Build/Compile
CC="$(TARGET_CC)" \
LD="$(TARGET_CC)" \
CCFLAGS="$(strip $(TARGET_CFLAGS))" \
CPPFLAGS="$$$$CPPFLAGS -I$(STAGING_DIR)/usr/include" \
CPPFLAGS="$$$$CPPFLAGS -I$(STAGING_DIR)/usr/include" -DIPTABLES_PATH=\\\"/usr/sbin\\\"" \
LDFLAGS="-L$(STAGING_DIR)/usr/lib" \
prefix="$(PKG_INSTALL_DIR)/usr"
endef