diff options
author | Steven Barth <cyrus@openwrt.org> | 2015-03-10 08:43:54 +0000 |
---|---|---|
committer | Steven Barth <cyrus@openwrt.org> | 2015-03-10 08:43:54 +0000 |
commit | e151d056229202ad1451281f249b725c52492071 (patch) | |
tree | 331332430516da5db1e0e88c844d539792f2d6f2 /package | |
parent | 853a1d4baf165cba8a9f4e9c5aa01581ab8ff412 (diff) | |
download | upstream-e151d056229202ad1451281f249b725c52492071.tar.gz upstream-e151d056229202ad1451281f249b725c52492071.tar.bz2 upstream-e151d056229202ad1451281f249b725c52492071.zip |
6rd: make host dependency more specific
Signed-off-by: Steven Barth <steven@midlink.org>
SVN-Revision: 44636
Diffstat (limited to 'package')
-rw-r--r-- | package/network/ipv6/6rd/Makefile | 2 | ||||
-rw-r--r-- | package/network/ipv6/6rd/files/6rd.sh | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/package/network/ipv6/6rd/Makefile b/package/network/ipv6/6rd/Makefile index d3e4bf6974..f9b7eae139 100644 --- a/package/network/ipv6/6rd/Makefile +++ b/package/network/ipv6/6rd/Makefile @@ -8,7 +8,7 @@ include $(TOPDIR)/rules.mk PKG_NAME:=6rd -PKG_VERSION:=8 +PKG_VERSION:=9 PKG_RELEASE:=1 PKG_LICENSE:=GPL-2.0 diff --git a/package/network/ipv6/6rd/files/6rd.sh b/package/network/ipv6/6rd/files/6rd.sh index 287f569885..b48513640e 100644 --- a/package/network/ipv6/6rd/files/6rd.sh +++ b/package/network/ipv6/6rd/files/6rd.sh @@ -23,7 +23,7 @@ proto_6rd_setup() { return } - ( proto_add_host_dependency "$cfg" 0.0.0.0 "$tunlink" ) + ( proto_add_host_dependency "$cfg" "$peeraddr" "$tunlink" ) [ -z "$ipaddr" ] && { local wanif="$tunlink" |