diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2008-11-14 12:59:14 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2008-11-14 12:59:14 +0000 |
commit | 9f07b39f65c9aa739138cbf88cbf6c264d46e1ea (patch) | |
tree | 8e2efbe1498f985381e38aefca70e42b90ebf3ad /package/editors/Config.in | |
parent | 8033ef6fe2c272df1493a1bfe6c38337f06755e2 (diff) | |
download | buildroot-novena-9f07b39f65c9aa739138cbf88cbf6c264d46e1ea.tar.gz buildroot-novena-9f07b39f65c9aa739138cbf88cbf6c264d46e1ea.zip |
package: Kconfig: use menu instead of menuconfig for sub menus
As discussed on the list - These things should normally not be
(un)selectable.
Diffstat (limited to 'package/editors/Config.in')
-rw-r--r-- | package/editors/Config.in | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/package/editors/Config.in b/package/editors/Config.in index b4e7e4023..a1b5fd3ac 100644 --- a/package/editors/Config.in +++ b/package/editors/Config.in @@ -1,12 +1,6 @@ -menuconfig BR2_TEXTEDIT_SUPPORT - bool "Text editors" - default y - help - Support for text editors - -if BR2_TEXTEDIT_SUPPORT +menu "Text editors" source "package/editors/ed/Config.in" source "package/editors/nano/Config.in" source "package/editors/uemacs/Config.in" source "package/editors/vim/Config.in" -endif +endmenu |