Commit a5ac6171 authored by Peter Korsgaard's avatar Peter Korsgaard
Browse files

buildroot: s/depends/depends on/

The new kconfig is more strict regarding depends/depends on, so fixup
the tree.
parent 9991e8c7
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -243,14 +243,14 @@ choice

config BR2_STRIP_strip
	bool "strip"
	depends !BR2_ENABLE_DEBUG
	depends on !BR2_ENABLE_DEBUG
	help
	  strip   is the normal strip command

config BR2_STRIP_sstrip
	bool "sstrip"
	select BR2_PACKAGE_SSTRIP_HOST
	depends !BR2_ENABLE_DEBUG
	depends on !BR2_ENABLE_DEBUG
	help
	  sstrip  is a strip that discards more than the normal strip

+1 −1
Original line number Diff line number Diff line
config BR2_PACKAGE_ARGUS
	bool "argus"
	default n
	depends BR2_PACKAGE_LIBPCAP
	depends on BR2_PACKAGE_LIBPCAP
	help
	  A Real Time Flow Monitor-based audit engine.

+3 −3
Original line number Diff line number Diff line
@@ -3,11 +3,11 @@ config BR2_PACKAGE_ASTERISK
	default n
	select BR2_PACKAGE_NCURSES
	select BR2_PACKAGE_ZLIB
	depends BR2_PACKAGE_OPENSSL
	depends BR2_PACKAGE_MPG123
	depends on BR2_PACKAGE_OPENSSL
	depends on BR2_PACKAGE_MPG123
	help
		Asterisk - the Open Source PBX

comment "asterisk	- disabled (required openssl and mpg123)"
	depends !BR2_PACKAGE_OPENSSL || ! BR2_PACKAGE_MPG123
	depends on !BR2_PACKAGE_OPENSSL || ! BR2_PACKAGE_MPG123
+2 −2
Original line number Diff line number Diff line
@@ -2,9 +2,9 @@ config BR2_PACKAGE_ATK
	bool "atk"
	select BR2_PACKAGE_PKGCONFIG
	default n
	depends BR2_PACKAGE_LIBGLIB2
	depends on BR2_PACKAGE_LIBGLIB2
	help
	  The ATK accessibility toolkit, needed to build GTK+-2.x.

comment "atk		- disabled (requires libglib2)"
	depends !BR2_PACKAGE_LIBGLIB2
	depends on !BR2_PACKAGE_LIBGLIB2
+2 −2
Original line number Diff line number Diff line
@@ -24,7 +24,7 @@ config BR2_PACKAGE_AVAHI_DAEMON
	bool "mDNS/DNS-SD daemon"
	default n
	depends on BR2_PACKAGE_AVAHI
	depends BR2_PACKAGE_EXPAT
	depends on BR2_PACKAGE_EXPAT
	help
	  The Avahi mDNS/DNS-SD daemon implementing Apple's ZeroConf
	  architecture (also known as "Rendezvous" or "Bonjour").
@@ -33,4 +33,4 @@ config BR2_PACKAGE_AVAHI_DAEMON

comment "mDNS/DNS-SD daemon	- disabled (requires expat)"
	depends on BR2_PACKAGE_AVAHI
	depends !BR2_PACKAGE_EXPAT
	depends on !BR2_PACKAGE_EXPAT
Loading