mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-23 21:43:30 +08:00
67f4794de1
The check-package script when ran gives warnings on text wrapping on all of these Config files. This patch cleans up all warnings related to the text wrapping for the Config files starting with the letter d in the package directory. The appropriate indentation is: <tab><2 spaces><62 chars> See http://nightly.buildroot.org/#writing-rules-config-in for more information. Signed-off-by: Adam Duskett <aduskett@codeblue.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
15 lines
475 B
Plaintext
15 lines
475 B
Plaintext
config BR2_PACKAGE_DIALOG
|
|
bool "dialog"
|
|
depends on BR2_USE_MMU # fork()
|
|
select BR2_PACKAGE_NCURSES
|
|
select BR2_PACKAGE_LIBICONV if !BR2_ENABLE_LOCALE
|
|
help
|
|
dialog - display dialog boxes from shell scripts
|
|
|
|
This application provides a method of displaying several
|
|
different types of dialog boxes from shell scripts. This
|
|
allows a developer of a script to interact with the user in a
|
|
much friendlier manner.
|
|
|
|
http://invisible-island.net/dialog/dialog.html
|