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/asterisk | |
parent | 9991e8c7fbd18bf12af66b7cf040d2d7de3ed6c0 (diff) |
buildroot: s/depends/depends on/
The new kconfig is more strict regarding depends/depends on, so fixup
the tree.
Diffstat (limited to 'package/asterisk')
-rw-r--r-- | package/asterisk/Config.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/package/asterisk/Config.in b/package/asterisk/Config.in index 36238debb..1a35546e7 100644 --- a/package/asterisk/Config.in +++ b/package/asterisk/Config.in @@ -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 |