diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-10-31 11:12:25 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-10-31 11:12:25 +0000 |
commit | f46999f8bc42ebfa50f14e7d53e56a12731bfdd3 (patch) | |
tree | a8469d385886f625a915ff94fdca2ab3d44bd952 /scripts | |
parent | 1552ff7efb760214eb4e5afc97f200136a935643 (diff) | |
download | busybox-f46999f8bc42ebfa50f14e7d53e56a12731bfdd3.tar.gz |
Fix location of Configure.help
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/Configure | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/Configure b/scripts/Configure index 01637bdbe..84302075d 100644 --- a/scripts/Configure +++ b/scripts/Configure @@ -122,7 +122,7 @@ function rndval () { # help variable # function help () { - if [ -f Documentation/Configure.help ] + if [ -f docs/Configure.help ] then #first escape regexp special characters in the argument: var=$(echo "$1"|sed 's/[][\/.^$*]/\\&/g') @@ -135,7 +135,7 @@ ${var}:\\ /^[^ ]/q /<file:\\([^>]*\\)>/s//\\1/g p - }" Documentation/Configure.help) + }" docs/Configure.help) if [ -z "$text" ] then echo; echo " Sorry, no help available for this option yet.";echo @@ -144,7 +144,7 @@ ${var}:\\ fi else echo; - echo " Can't access the file Documentation/Configure.help which" + echo " Can't access the file docs/Configure.help which" echo " should contain the help texts." echo fi |