diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2013-05-02 08:10:55 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2013-05-02 08:10:55 +0000 |
commit | 07664b6ac344ec38d5629fcb331d90d61de374f1 (patch) | |
tree | e658253143e5f5fcb7bef30e5c535971fcecdd5b | |
parent | eeea332f33f9eb0b8156e38e9d40bdfa7000fc81 (diff) | |
download | upstream-07664b6ac344ec38d5629fcb331d90d61de374f1.tar.gz upstream-07664b6ac344ec38d5629fcb331d90d61de374f1.tar.bz2 upstream-07664b6ac344ec38d5629fcb331d90d61de374f1.zip |
Fix install of iptables pkg-config files.
libiptc.pc depends on libip[4|6]tc.pc, thus all of those need to be
installed.
Should fix collectd build and thus #13146; which should make collectd
appear in snapshots again.
Signed-off-by: Danny Baumann <dannybaumann@web.de>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36509 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r-- | package/network/utils/iptables/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/network/utils/iptables/Makefile b/package/network/utils/iptables/Makefile index 371153f665..4140acb77d 100644 --- a/package/network/utils/iptables/Makefile +++ b/package/network/utils/iptables/Makefile @@ -376,7 +376,7 @@ define Build/InstallDev $(CP) $(PKG_INSTALL_DIR)/usr/lib/libip*tc.so* $(1)/usr/lib/ $(INSTALL_DIR) $(1)/usr/lib/pkgconfig $(CP) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/xtables.pc $(1)/usr/lib/pkgconfig/ - $(CP) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/libiptc.pc $(1)/usr/lib/pkgconfig/ + $(CP) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/libip*tc.pc $(1)/usr/lib/pkgconfig/ endef define Package/iptables/install |