summaryrefslogtreecommitdiff
path: root/package/network/utils/iputils/patches/002-fix-ipv6.patch
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2012-10-10 13:22:18 +0000
committerJo-Philipp Wich <jow@openwrt.org>2012-10-10 13:22:18 +0000
commit936c1b9424ec53f450a3b62ac2d8a9155d45ae88 (patch)
treec3d55d0736d0f354d8b1ca58e05cc82a5d0ef8b6 /package/network/utils/iputils/patches/002-fix-ipv6.patch
parent8230e20a799f5391ca5b5560abc6148d10e8a8d6 (diff)
downloadmtk-20170518-936c1b9424ec53f450a3b62ac2d8a9155d45ae88.zip
mtk-20170518-936c1b9424ec53f450a3b62ac2d8a9155d45ae88.tar.gz
mtk-20170518-936c1b9424ec53f450a3b62ac2d8a9155d45ae88.tar.bz2
iputils: move to trunk and add myself as maintainer
SVN-Revision: 33704
Diffstat (limited to 'package/network/utils/iputils/patches/002-fix-ipv6.patch')
-rw-r--r--package/network/utils/iputils/patches/002-fix-ipv6.patch14
1 files changed, 14 insertions, 0 deletions
diff --git a/package/network/utils/iputils/patches/002-fix-ipv6.patch b/package/network/utils/iputils/patches/002-fix-ipv6.patch
new file mode 100644
index 0000000..4411ca7
--- /dev/null
+++ b/package/network/utils/iputils/patches/002-fix-ipv6.patch
@@ -0,0 +1,14 @@
+--- a/Makefile
++++ b/Makefile
+@@ -18,7 +18,10 @@ CFLAGS=$(CCOPT) $(GLIBCFIX) $(DEFINES)
+
+ IPV4_TARGETS=tracepath ping clockdiff arping tftpd
+ IPV6_TARGETS=tracepath6 traceroute6 ping6
+-TARGETS=$(IPV4_TARGETS) $(IPV6_TARGETS)
++TARGETS=$(IPV4_TARGETS)
++ifeq ($(CONFIG_IPV6),y)
++ TARGETS=$(IPV4_TARGETS) $(IPV6_TARGETS)
++endif
+
+ LASTTAG:=`git describe HEAD | sed -e 's/-.*//'`
+ TAG:=`date +s%Y%m%d`