spell check with codespell

This commit is contained in:
stephanebill
2024-11-20 16:53:40 -05:00
parent c4559c39c3
commit 4f2afa8c47
162 changed files with 250 additions and 250 deletions

View File

@@ -126,7 +126,7 @@ cd "openssl-$OPENSSLVERSION"
case `pwd` in
*\ * )
echo "The build path (`pwd`) contains whitepsaces - fix this."
echo "The build path (`pwd`) contains whitespaces - fix this."
exit 1
;;
esac
@@ -146,8 +146,8 @@ echo "Copying header files ..."
cp -r include/ ../../include/
echo
echo "Combining to unversal binary"
echo "Combining to universal binary"
lipo -create ../../lib/libcrypto_*.a -o ../../lib/libcrypto.a
lipo -create ../../lib/libssl_*.a -o ../../lib/libssl.a
echo "Finished. Please verify the contens of the openssl folder in \"$INSTALLDIR\""
echo "Finished. Please verify the contents of the openssl folder in \"$INSTALLDIR\""

View File

@@ -1,13 +1,13 @@
#!/bin/bash
#
# Android build confguration
# Android build configuration
#
# Note: This is a simple configuration to build all
# architectures in one rush.
# Since android 64 bit support was introduced with NDK API 21
# this is the minimal common denominator.
# If you require support for older NDK API levels,
# create seperate configurations for each NDK API level
# create separate configurations for each NDK API level
# and architecture you want to support.
WITH_OPENH264=0
WITH_OPENSSL=1

View File

@@ -1,13 +1,13 @@
#!/bin/bash
#
# Android build confguration
# Android build configuration
#
# Note: This is a simple configuration to build all
# architectures in one rush.
# Since android 64 bit support was introduced with NDK API 21
# this is the minimal common denominator.
# If you require support for older NDK API levels,
# create seperate configurations for each NDK API level
# create separate configurations for each NDK API level
# and architecture you want to support.
WITH_OPENH264=1
WITH_OPENSSL=1

View File

@@ -90,7 +90,7 @@ function common_run {
RES=$?
if [[ $RES -ne 0 ]];
then
echo "[ERROR] $@ retured $RES"
echo "[ERROR] $@ returned $RES"
exit 1
fi
}

View File

@@ -1,13 +1,13 @@
#!/bin/bash
#
# Android build confguration
# Android build configuration
#
# Note: This is a simple configuration to build all
# architectures in one rush.
# Since android 64 bit support was introduced with NDK API 21
# this is the minimal common denominator.
# If you require support for older NDK API levels,
# create seperate configurations for each NDK API level
# create separate configurations for each NDK API level
# and architecture you want to support.
WITH_OPENH264=0
WITH_OPENSSL=1

View File

@@ -1,13 +1,13 @@
#!/bin/bash
#
# Android build confguration
# Android build configuration
#
# Note: This is a simple configuration to build all
# architectures in one rush.
# Since android 64 bit support was introduced with NDK API 21
# this is the minimal common denominator.
# If you require support for older NDK API levels,
# create seperate configurations for each NDK API level
# create separate configurations for each NDK API level
# and architecture you want to support.
WITH_OPENH264=0
WITH_OPENSSL=1

View File

@@ -58,7 +58,7 @@ def padhexa(v):
def write_struct(fp, struct, name, url, base, inv = False, typemap = None):
li = requests.get(url)
if li.status_code != requests.codes.ok:
print('Could not fetch ' + str(url) + ', reponse code ' + str(li.status_code))
print('Could not fetch ' + str(url) + ', response code ' + str(li.status_code))
sys.exit(1)
headers, languages = parse_html(li.text)

View File

@@ -39,7 +39,7 @@ if [ ! -f $ADB ] || [ ! -x $ADB ]; then
exit -3
fi
# Do the acutal work in a temporary directory.
# Do the actual work in a temporary directory.
SRC=`mktemp -d`
cd $SRC
$ADB $@ pull /sdcard/gmon.out