diff options
author | Robert P. J. DAY" <rpjday@crashcourse.ca> | 2009-04-02 22:28:10 +0000 |
---|---|---|
committer | Robert P. J. DAY" <rpjday@crashcourse.ca> | 2009-04-02 22:28:10 +0000 |
commit | 91723b77484350f5f5c483a0edaf1ea363d55488 (patch) | |
tree | 122503b2e58bb4759d76b830b204e67069d2f4f2 | |
parent | ac159385fadc82a3283cee2ffa56ed29ac69b22b (diff) | |
download | crosstool-ng-91723b77484350f5f5c483a0edaf1ea363d55488.tar.gz crosstool-ng-91723b77484350f5f5c483a0edaf1ea363d55488.tar.bz2 crosstool-ng-91723b77484350f5f5c483a0edaf1ea363d55488.zip |
Fix some simple typoes.
-rwxr-xr-x | configure | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -143,7 +143,7 @@ has_or_abort() { echo done echo "Either you are missing entirely the needed tool," - echo "or the version you have is tool old." + echo "or the version you have is too old." if [ -n "${var_name}" ]; then echo "You can give the path to this tool using: --with-${var_name}=PATH" fi @@ -294,7 +294,7 @@ else fi if [ -z "${grep}" ]; then echo "Either you are missing entirely the needed tool," - echo "or the version you have is tool old." + echo "or the version you have is too old." echo "You can give the path to this tool using: --with-grep=PATH" do_error "Bailing out..." fi @@ -308,7 +308,7 @@ else echo "not found" else echo "${sed}" - printf "Checking wether '${sed}' supports -i and -e... " + printf "Checking whether '${sed}' supports -i and -e... " touch .ct-ng.sed.test if "${sed}" -r -i -e 's/foo/bar/' .ct-ng.sed.test >/dev/null 2>&1; then echo "yes" @@ -321,7 +321,7 @@ else fi if [ -z "${sed}" ]; then echo "Either you are missing entirely the needed tool," - echo "or the version you have is tool old." + echo "or the version you have is too old." echo "You can give the path to this tool using: --with-sed=PATH" do_error "Bailing out..." fi |