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/ncftp | |
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/ncftp')
-rw-r--r-- | package/ncftp/Config.in | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/package/ncftp/Config.in b/package/ncftp/Config.in index c1028f227..e4a240553 100644 --- a/package/ncftp/Config.in +++ b/package/ncftp/Config.in @@ -8,36 +8,36 @@ config BR2_PACKAGE_NCFTP http://www.ncftp.com/ncftp/ menu "ncFTP tools selection" - depends BR2_PACKAGE_NCFTP + depends on BR2_PACKAGE_NCFTP config BR2_PACKAGE_NCFTP_GET bool "NcFTPGet - command-line utility program" default y - depends BR2_PACKAGE_NCFTP + depends on BR2_PACKAGE_NCFTP config BR2_PACKAGE_NCFTP_PUT bool "NcFTPPut - command-line utility program" default y - depends BR2_PACKAGE_NCFTP + depends on BR2_PACKAGE_NCFTP config BR2_PACKAGE_NCFTP_LS bool "NcFTPLs - command-line utility program" default y - depends BR2_PACKAGE_NCFTP + depends on BR2_PACKAGE_NCFTP config BR2_PACKAGE_NCFTP_BATCH bool "NcFTPBatch - background FTP program for individual users" default y - depends BR2_PACKAGE_NCFTP + depends on BR2_PACKAGE_NCFTP config BR2_PACKAGE_NCFTP_SPOOLER bool "NcFTPSpooler - spooler - not working properly" default n - depends BR2_PACKAGE_NCFTP + depends on BR2_PACKAGE_NCFTP config BR2_PACKAGE_NCFTP_BOOKMARKS bool "NcFTPBookmarks - not working properly" default n - depends BR2_PACKAGE_NCFTP + depends on BR2_PACKAGE_NCFTP endmenu |