diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2008-06-19 19:06:25 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2008-06-19 19:06:25 +0000 |
commit | a5ac61715b70ef628e1239e92ffd7aae859e8294 (patch) | |
tree | 15728d9cc383c794196d671ad8262fc1d364e7e8 /package/busybox/Config.in | |
parent | 9991e8c7fbd18bf12af66b7cf040d2d7de3ed6c0 (diff) | |
download | buildroot-novena-a5ac61715b70ef628e1239e92ffd7aae859e8294.tar.gz buildroot-novena-a5ac61715b70ef628e1239e92ffd7aae859e8294.zip |
buildroot: s/depends/depends on/
The new kconfig is more strict regarding depends/depends on, so fixup
the tree.
Diffstat (limited to 'package/busybox/Config.in')
-rw-r--r-- | package/busybox/Config.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/package/busybox/Config.in b/package/busybox/Config.in index 551ef635e..1c54e845f 100644 --- a/package/busybox/Config.in +++ b/package/busybox/Config.in @@ -11,7 +11,7 @@ config BR2_PACKAGE_BUSYBOX choice prompt "BusyBox Version" - depends BR2_PACKAGE_BUSYBOX + depends on BR2_PACKAGE_BUSYBOX default BR2_BUSYBOX_VERSION_1_10_X help Select the version of BusyBox you wish to use. @@ -55,7 +55,7 @@ config BR2_BUSYBOX_VERSION config BR2_PACKAGE_BUSYBOX_FULLINSTALL bool "Run BusyBox's own full installation" - depends BR2_PACKAGE_BUSYBOX + depends on BR2_PACKAGE_BUSYBOX default y help If you want to run BusyBox's own full install for the @@ -68,7 +68,7 @@ config BR2_PACKAGE_BUSYBOX_FULLINSTALL config BR2_PACKAGE_BUSYBOX_CONFIG string "BusyBox configuration file to use?" - depends BR2_PACKAGE_BUSYBOX + depends on BR2_PACKAGE_BUSYBOX default "target/device/x86/i386/busybox.config" if BR2_PACKAGE_BUSYBOX_SNAPSHOT default "package/busybox/busybox-1.2.2.1.config" if BR2_BUSYBOX_VERSION_1_2_2_1 default "package/busybox/busybox-1.6.0.config" if BR2_BUSYBOX_VERSION_1_6_1 |