package: Don't hide all editors in menuconfig

Don't hide all editors in config if BR2_PACKAGE_BUSYBOX_SHOW_OTHERS is not
selected. Indeed vi is the only editor already provided by busybox.

Signed-off-by: Julien Boibessot <julien.boibessot@armadeus.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
Julien Boibessot 2009-10-22 12:09:39 +02:00 committed by Peter Korsgaard
parent 31d34b4205
commit 8ec5a86616
2 changed files with 3 additions and 5 deletions

View File

@ -114,14 +114,9 @@ endif
source "package/database/Config.in"
if BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
# busybox has an editor
# text editors
source "package/editors/Config.in"
endif
menu "Networking"
comment "Networking applications"

View File

@ -2,5 +2,8 @@ menu "Text editors"
source "package/editors/ed/Config.in"
source "package/editors/nano/Config.in"
source "package/editors/uemacs/Config.in"
if BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
# busybox has vi
source "package/editors/vim/Config.in"
endif
endmenu