diff options
author | Nicolas Thill <nico@openwrt.org> | 2005-03-30 15:32:55 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2005-03-30 15:32:55 +0000 |
commit | 75cfa3112752d645c315f0383bd2a00572e9c296 (patch) | |
tree | cc556e2c386cde717654f1af6f83591594d0f857 /openwrt/package/tcpdump | |
parent | 0645ebf31ec3e27b9b9897caddc7e4fe9d901b64 (diff) | |
download | mtk-20170518-75cfa3112752d645c315f0383bd2a00572e9c296.zip mtk-20170518-75cfa3112752d645c315f0383bd2a00572e9c296.tar.gz mtk-20170518-75cfa3112752d645c315f0383bd2a00572e9c296.tar.bz2 |
Use shared libpcap installed in staging_dir/usr
SVN-Revision: 478
Diffstat (limited to 'openwrt/package/tcpdump')
-rw-r--r-- | openwrt/package/tcpdump/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/openwrt/package/tcpdump/Makefile b/openwrt/package/tcpdump/Makefile index 4e8b934..72621b1 100644 --- a/openwrt/package/tcpdump/Makefile +++ b/openwrt/package/tcpdump/Makefile @@ -40,9 +40,9 @@ $(PKG_BUILD_DIR)/.configured: $(PKG_BUILD_DIR)/.unpacked $(PKG_BUILD_DIR)/$(PKG_NAME): $(PKG_BUILD_DIR)/.configured $(MAKE) \ - LDFLAGS="-L$(STAGING_DIR)/lib" \ + LDFLAGS="-L$(STAGING_DIR)/usr/lib" \ LIBS="-lpcap" \ - INCLS="-I. -I$(STAGING_DIR)/include" \ + INCLS="-I. -I$(STAGING_DIR)/usr/include" \ -C $(PKG_BUILD_DIR) $(PKG_IPK): $(PKG_BUILD_DIR)/$(PKG_NAME) |