diff options
author | Ralf Baechle <ralf@linux-mips.org> | 1998-05-07 02:55:41 +0000 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 1998-05-07 02:55:41 +0000 |
commit | dcec8a13bf565e47942a1751a9cec21bec5648fe (patch) | |
tree | 548b69625b18cc2e88c3e68d0923be546c9ebb03 /scripts/Configure | |
parent | 2e0f55e79c49509b7ff70ff1a10e1e9e90a3dfd4 (diff) |
o Merge with Linux 2.1.99.
o Fix ancient bug in the ELF loader making ldd crash.
o Fix ancient bug in the keyboard code for SGI, SNI and Jazz.
Diffstat (limited to 'scripts/Configure')
-rw-r--r-- | scripts/Configure | 17 |
1 files changed, 13 insertions, 4 deletions
diff --git a/scripts/Configure b/scripts/Configure index 5ca0e8366..a2b90f910 100644 --- a/scripts/Configure +++ b/scripts/Configure @@ -50,6 +50,13 @@ # 300397 Phil Blundell (pjb27@cam.ac.uk) - added support for min/max # arguments to "int", allow dep_tristate to take a list of dependencies # rather than just one. +# +# 090398 Axel Boldt (boldt@math.ucsb.edu) - allow for empty lines in help +# texts. +# +# 100498 Riley Williams (rhw@bigfoot.com) - added ability to display +# blank lines in help texts: Any line consisting only of a single dot +# will be displayed blank. # # Make sure we're really running bash. @@ -89,16 +96,18 @@ function help () { var=$(echo "$1"|sed 's/[][\/.^$*]/\\&/g') #now pick out the right help text: text=$(sed -n "/^$var[ ]*\$/,\${ - /^$var[ ]*\$/b - /^#.*/b - /^[ ]*\$/q + /^$var[ ]*\$/c\\ +${var}:\\ + + /^#/b + /^[^ ]/q p }" Documentation/Configure.help) if [ -z "$text" ] then echo; echo " Sorry, no help available for this option yet.";echo else - (echo; echo "$text"; echo) | ${PAGER:-more} + (echo; echo "$text") | sed 's/^\.$//' | ${PAGER:-more} fi else echo; |