diff options
author | Geert Uytterhoeven <geert+renesas@glider.be> | 2015-05-26 07:39:54 -0400 |
---|---|---|
committer | Michal Marek <mmarek@suse.cz> | 2015-06-04 10:41:47 -0400 |
commit | fa75a727c01963088299a7fa691e71ed90018a7d (patch) | |
tree | 053cdbdf260a32f3a962b73c76124c2b9ca4896c | |
parent | 39c3f1ba5ee3b937c43747f60dfa869d9776a4ac (diff) |
kconfig: Wrap long "make help" text lines
Some "make help" text lines extend beyond 80 characters. Wrap them at 79
characters.
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Signed-off-by: Michal Marek <mmarek@suse.cz>
-rw-r--r-- | scripts/kconfig/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/scripts/kconfig/Makefile b/scripts/kconfig/Makefile index 9e0be1cb0813..930de225d52e 100644 --- a/scripts/kconfig/Makefile +++ b/scripts/kconfig/Makefile | |||
@@ -122,7 +122,8 @@ tinyconfig: | |||
122 | # Help text used by make help | 122 | # Help text used by make help |
123 | help: | 123 | help: |
124 | @echo ' config - Update current config utilising a line-oriented program' | 124 | @echo ' config - Update current config utilising a line-oriented program' |
125 | @echo ' nconfig - Update current config utilising a ncurses menu based program' | 125 | @echo ' nconfig - Update current config utilising a ncurses menu based' |
126 | @echo ' program' | ||
126 | @echo ' menuconfig - Update current config utilising a menu based program' | 127 | @echo ' menuconfig - Update current config utilising a menu based program' |
127 | @echo ' xconfig - Update current config utilising a Qt based front-end' | 128 | @echo ' xconfig - Update current config utilising a Qt based front-end' |
128 | @echo ' gconfig - Update current config utilising a GTK+ based front-end' | 129 | @echo ' gconfig - Update current config utilising a GTK+ based front-end' |
@@ -138,7 +139,8 @@ help: | |||
138 | @echo ' alldefconfig - New config with all symbols set to default' | 139 | @echo ' alldefconfig - New config with all symbols set to default' |
139 | @echo ' randconfig - New config with random answer to all options' | 140 | @echo ' randconfig - New config with random answer to all options' |
140 | @echo ' listnewconfig - List new options' | 141 | @echo ' listnewconfig - List new options' |
141 | @echo ' olddefconfig - Same as silentoldconfig but sets new symbols to their default value' | 142 | @echo ' olddefconfig - Same as silentoldconfig but sets new symbols to their' |
143 | @echo ' default value' | ||
142 | @echo ' kvmconfig - Enable additional options for guest kernel support' | 144 | @echo ' kvmconfig - Enable additional options for guest kernel support' |
143 | @echo ' tinyconfig - Configure the tiniest possible kernel' | 145 | @echo ' tinyconfig - Configure the tiniest possible kernel' |
144 | 146 | ||