summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2008-02-14 22:44:34 (GMT)
committerYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2008-02-14 22:44:34 (GMT)
commit07fa6117711e0eba3543bf37d05177c4c332572f (patch)
treec614a616871d7ff7119b7fdc94ec4d4fb0134b67 /scripts
parentf363a4c3d570b270ae037dd8658285695b533340 (diff)
Robet P. J. DAY: typoes.
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/crosstool.sh4
-rw-r--r--scripts/functions2
2 files changed, 3 insertions, 3 deletions
diff --git a/scripts/crosstool.sh b/scripts/crosstool.sh
index 38b8405..64e5859 100755
--- a/scripts/crosstool.sh
+++ b/scripts/crosstool.sh
@@ -92,7 +92,7 @@ if [ -n "${CT_RESTART}" -a ! -d "${CT_STATE_DIR}" ]; then
CT_DoLog ERROR "You asked to restart a non-restartable build"
CT_DoLog ERROR "This happened because you didn't set CT_DEBUG_CT_SAVE_STEPS"
CT_DoLog ERROR "in the config options for the previous build, or the state"
- CT_DoLog ERROR "directoy for the previous build was deleted."
+ CT_DoLog ERROR "directory for the previous build was deleted."
CT_Abort "I will stop here to avoid any carnage"
fi
@@ -187,7 +187,7 @@ mkdir -p "${CT_CC_CORE_SHARED_PREFIX_DIR}"
mkdir -p "${CT_STATE_DIR}"
# Kludge: CT_INSTALL_DIR and CT_PREFIX_DIR might have grown read-only if
-# the previous build was successfull. To be able to move the logfile there,
+# the previous build was successful. To be able to move the logfile there,
# switch them back to read/write
chmod -R u+w "${CT_INSTALL_DIR}" "${CT_PREFIX_DIR}"
diff --git a/scripts/functions b/scripts/functions
index 6ec2173..caca281 100644
--- a/scripts/functions
+++ b/scripts/functions
@@ -158,7 +158,7 @@ CT_TestOrAbort() {
# Test the presence of a tool, or abort if not found
# Usage: CT_HasOrAbort <tool>
CT_HasOrAbort() {
- CT_TestAndAbort "\"${1}\" not found and needed for successfull toolchain build." -z "`CT_Which \"${1}\"`"
+ CT_TestAndAbort "\"${1}\" not found and needed for successful toolchain build." -z "`CT_Which \"${1}\"`"
return 0
}