mirror of
https://github.com/openwrt/openwrt.git
synced 2025-03-11 06:54:21 +00:00
busybox: fix IPv6 dependency
Commit 9f0cb135dd made BUSYBOX_CONFIG_FEATURE_IPV6 dependant on IPV6 but did not make its default value BUSYBOX_DEFAULT_FEATURE_IPV6 dependant on IPV6. BUSYBOX_DEFAULT_FEATURE_IPV6 will have as default value y if IPV6 is enabled otherwise n. Signed-off-by: Hans Dedecker <dedeckeh@gmail.com>
This commit is contained in:
parent
30cc5b0bf4
commit
ec9576607d
@ -2124,7 +2124,8 @@ config BUSYBOX_DEFAULT_WATCHDOG
|
|||||||
default n
|
default n
|
||||||
config BUSYBOX_DEFAULT_FEATURE_IPV6
|
config BUSYBOX_DEFAULT_FEATURE_IPV6
|
||||||
bool
|
bool
|
||||||
default y
|
default y if IPV6
|
||||||
|
default n
|
||||||
config BUSYBOX_DEFAULT_FEATURE_UNIX_LOCAL
|
config BUSYBOX_DEFAULT_FEATURE_UNIX_LOCAL
|
||||||
bool
|
bool
|
||||||
default n
|
default n
|
||||||
|
@ -9,7 +9,7 @@ include $(TOPDIR)/rules.mk
|
|||||||
|
|
||||||
PKG_NAME:=busybox
|
PKG_NAME:=busybox
|
||||||
PKG_VERSION:=1.29.3
|
PKG_VERSION:=1.29.3
|
||||||
PKG_RELEASE:=2
|
PKG_RELEASE:=3
|
||||||
PKG_FLAGS:=essential
|
PKG_FLAGS:=essential
|
||||||
|
|
||||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
||||||
|
Loading…
x
Reference in New Issue
Block a user