diff options
author | Julien Boibessot <julien.boibessot@free.fr> | 2009-10-22 12:09:39 +0200 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2009-10-25 21:31:25 +0100 |
commit | 8ec5a866162772b60deba2060917cd281eb64cae (patch) | |
tree | d8b9daf63db462b4901baa2b09b0c9e5fd2ebfa9 /package/editors/Config.in | |
parent | 31d34b42053be4ce472d5561e7b21a3bcf4d9dd7 (diff) |
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>
Diffstat (limited to 'package/editors/Config.in')
-rw-r--r-- | package/editors/Config.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/package/editors/Config.in b/package/editors/Config.in index a1b5fd3ac..f58f96b11 100644 --- a/package/editors/Config.in +++ b/package/editors/Config.in @@ -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 |