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/dillo/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/dillo/Config.in')
-rw-r--r-- | package/dillo/Config.in | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/package/dillo/Config.in b/package/dillo/Config.in index 727d305be..1635af14b 100644 --- a/package/dillo/Config.in +++ b/package/dillo/Config.in @@ -1,11 +1,11 @@ config BR2_PACKAGE_DILLO bool "dillo" default n - depends BR2_PACKAGE_JPEG - depends BR2_PACKAGE_LIBGLIB12 - depends BR2_PACKAGE_LIBGTK12 - depends BR2_PACKAGE_ZLIB - depends BR2_PACKAGE_LIBPNG + depends on BR2_PACKAGE_JPEG + depends on BR2_PACKAGE_LIBGLIB12 + depends on BR2_PACKAGE_LIBGTK12 + depends on BR2_PACKAGE_ZLIB + depends on BR2_PACKAGE_LIBPNG depends on BR2_PACKAGE_XORG||BR2_PACKAGE_XORG7 help Dillo is a small GTK+ based web browser written in C. @@ -13,4 +13,4 @@ config BR2_PACKAGE_DILLO http://www.dillo.org/ comment "dillo - disabled (requires jpeg,libglib12,libgtk12,zlib,libpng and Xorg(7))" - depends !BR2_PACKAGE_JPEG || !BR2_PACKAGE_LIBGLIB12 || !BR2_PACKAGE_LIBGTK12 || !BR2_PACKAGE_ZLIB || !BR2_PACKAGE_LIBPNG || !(BR2_PACKAGE_XORG || BR2_PACKAGE_XORG7) + depends on !BR2_PACKAGE_JPEG || !BR2_PACKAGE_LIBGLIB12 || !BR2_PACKAGE_LIBGTK12 || !BR2_PACKAGE_ZLIB || !BR2_PACKAGE_LIBPNG || !(BR2_PACKAGE_XORG || BR2_PACKAGE_XORG7) |