aboutsummaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorJosh Soref <jsoref@users.noreply.github.com>2017-01-03 05:23:25 +0000
committerJosh Soref <jsoref@users.noreply.github.com>2017-01-03 05:23:25 +0000
commit45d0a28a6a63170cf194447dc68ea12459106d80 (patch)
tree9c229f679a0cd5d46079519b9a47d53ef576dcbd /tools
parentb953c42a1958f9ef19205a39eea6bb755d66de74 (diff)
spelling: comments
Diffstat (limited to 'tools')
-rw-r--r--tools/EventClients/Clients/OSXRemote/HIDRemote/HIDRemote.h8
-rw-r--r--tools/EventClients/Clients/OSXRemote/HIDRemote/HIDRemote.m6
-rw-r--r--tools/EventClients/Clients/OSXRemote/XBMCHelper.m4
-rw-r--r--tools/EventClients/Clients/OSXRemote/xbmcclientwrapper.mm2
-rw-r--r--tools/EventClients/Clients/WiiRemote/CWIID_WiiRemote.cpp4
-rw-r--r--tools/EventClients/Clients/WiiRemote/WiiUse_WiiRemote.cpp6
-rw-r--r--tools/EventClients/README.txt6
-rwxr-xr-xtools/EventClients/examples/python/example_button1.py2
-rw-r--r--tools/EventClients/lib/java/src/org/xbmc/eventclient/PacketBUTTON.java4
-rw-r--r--tools/EventClients/lib/java/src/org/xbmc/eventclient/PacketMOUSE.java2
-rw-r--r--tools/EventClients/lib/java/src/org/xbmc/eventclient/XBMCClient.java4
-rw-r--r--tools/EventClients/lib/python/ps3/sixaxis.py6
-rw-r--r--tools/EventClients/lib/python/xbmcclient.py16
-rw-r--r--tools/android/packaging/Makefile.in4
-rw-r--r--tools/buildsteps/README2
-rw-r--r--tools/buildsteps/android-arm64-v8a/configure-depends2
-rw-r--r--tools/buildsteps/android/configure-depends2
-rw-r--r--tools/buildsteps/androidx86/configure-depends2
-rw-r--r--tools/buildsteps/win32/buildffmpeg.sh2
-rw-r--r--tools/codegenerator/Helper.groovy10
-rw-r--r--tools/codegenerator/example/Example.call.template2
-rw-r--r--tools/codegenerator/example/Example.intypemap.template2
-rw-r--r--tools/codegenerator/example/Example.returns.template2
-rw-r--r--tools/depends/README4
24 files changed, 52 insertions, 52 deletions
diff --git a/tools/EventClients/Clients/OSXRemote/HIDRemote/HIDRemote.h b/tools/EventClients/Clients/OSXRemote/HIDRemote/HIDRemote.h
index 0c5b27373e..8a847aeae3 100644
--- a/tools/EventClients/Clients/OSXRemote/HIDRemote/HIDRemote.h
+++ b/tools/EventClients/Clients/OSXRemote/HIDRemote/HIDRemote.h
@@ -86,7 +86,7 @@
typedef enum
{
kHIDRemoteModeNone = 0L,
- kHIDRemoteModeShared, // Share the remote with others - let's you listen to the remote control events as long as noone has an exclusive lock on it
+ kHIDRemoteModeShared, // Share the remote with others - let's you listen to the remote control events as long as no one has an exclusive lock on it
// (RECOMMENDED ONLY FOR SPECIAL PURPOSES)
kHIDRemoteModeExclusive, // Try to acquire an exclusive lock on the remote (NOT RECOMMENDED)
@@ -194,9 +194,9 @@ typedef enum
- (BOOL)hidRemote:(HIDRemote *)hidRemote // Invoked when new hardware is inspected
inspectNewHardwareWithService:(io_service_t)service //
prematchResult:(BOOL)prematchResult; // Return YES if HIDRemote should go on with this hardware and try
- // to use it, or NO if it should not be persued further.
+ // to use it, or NO if it should not be pursued further.
-// Exlusive lock lending
+// Exclusive lock lending
- (BOOL)hidRemote:(HIDRemote *)hidRemote
lendExclusiveLockToApplicationWithInfo:(NSDictionary *)applicationInfo;
@@ -328,7 +328,7 @@ typedef enum
- (BOOL)_setupService:(io_object_t)service;
- (void)_destructService:(io_object_t)service;
-#pragma mark -- PRIVATE: Distributed notifiations handling --
+#pragma mark -- PRIVATE: Distributed notifications handling --
- (void)_postStatusWithAction:(NSString *)action;
- (void)_handleNotifications:(NSNotification *)notification;
- (void)_setSendStatusNotifications:(BOOL)doSend;
diff --git a/tools/EventClients/Clients/OSXRemote/HIDRemote/HIDRemote.m b/tools/EventClients/Clients/OSXRemote/HIDRemote/HIDRemote.m
index 0f54b7553f..c67067a4e5 100644
--- a/tools/EventClients/Clients/OSXRemote/HIDRemote/HIDRemote.m
+++ b/tools/EventClients/Clients/OSXRemote/HIDRemote/HIDRemote.m
@@ -696,7 +696,7 @@ static HIDRemote *sHIDRemote = nil;
}
-#pragma mark - PRIVATE: Distributed notifiations handling
+#pragma mark - PRIVATE: Distributed notifications handling
- (void)_postStatusWithAction:(NSString *)action
{
if (_sendStatusNotifications)
@@ -1458,7 +1458,7 @@ static HIDRemote *sHIDRemote = nil;
if ([HIDRemote OSXVersion] >= 0x1062)
{
// Support for the Aluminum Remote was added only with OS 10.6.2. Previous versions can not distinguish
- // between the Center and the new, seperate Play/Pause button. They'll recognize both as presses of the
+ // between the Center and the new, separate Play/Pause button. They'll recognize both as presses of the
// "Center" button.
//
// You CAN, however, receive Aluminum Remote button presses even under OS 10.5 when using Remote Buddy's
@@ -1703,7 +1703,7 @@ static HIDRemote *sHIDRemote = nil;
switch (buttonCode)
{
case kHIDRemoteButtonCodeIDChanged:
- // Do nothing, this is handled seperately
+ // Do nothing, this is handled separately
break;
case kHIDRemoteButtonCodeUp:
diff --git a/tools/EventClients/Clients/OSXRemote/XBMCHelper.m b/tools/EventClients/Clients/OSXRemote/XBMCHelper.m
index b507611746..d3f0d38bcb 100644
--- a/tools/EventClients/Clients/OSXRemote/XBMCHelper.m
+++ b/tools/EventClients/Clients/OSXRemote/XBMCHelper.m
@@ -25,10 +25,10 @@
{
[remote setDelegate:self];
[remote setSimulateHoldEvents:NO];
- //for now, we're using lending of exlusive lock
+ //for now, we're using lending of exclusive lock
//kHIDRemoteModeExclusiveAuto isn't working, as we're a background daemon
//one possibility would be to know when XBMC is running. Once we know that,
- //we could aquire exclusive lock when it's running, and release _exclusive_
+ //we could acquire exclusive lock when it's running, and release _exclusive_
//access once done
[remote setExclusiveLockLendingEnabled:YES];
diff --git a/tools/EventClients/Clients/OSXRemote/xbmcclientwrapper.mm b/tools/EventClients/Clients/OSXRemote/xbmcclientwrapper.mm
index 49980635e0..3bc580e51f 100644
--- a/tools/EventClients/Clients/OSXRemote/xbmcclientwrapper.mm
+++ b/tools/EventClients/Clients/OSXRemote/xbmcclientwrapper.mm
@@ -72,7 +72,7 @@ private:
};
-//typedef is here, as is seems that I can't put it into iterface declaration
+//typedef is here, as is seems that I can't put it into interface declaration
//CPacketBUTTON is a pointer, as I'm not sure how well it's copy constructor is implemented
typedef std::map<eATVClientEvent, CPacketBUTTON*> tEventMap;
typedef std::map<XBMCClientEventSequence, CPacketBUTTON*> tSequenceMap;
diff --git a/tools/EventClients/Clients/WiiRemote/CWIID_WiiRemote.cpp b/tools/EventClients/Clients/WiiRemote/CWIID_WiiRemote.cpp
index 87af3590c1..3d232d26f8 100644
--- a/tools/EventClients/Clients/WiiRemote/CWIID_WiiRemote.cpp
+++ b/tools/EventClients/Clients/WiiRemote/CWIID_WiiRemote.cpp
@@ -127,7 +127,7 @@ void CWiiRemote::ErrorCallback(struct wiimote *wiiremote, const char *str, va_li
#endif
//Constructor
-/*This constructor is never used but it shows how one would connect to just a specific Wiiremote by Mac-Adress*/
+/*This constructor is never used but it shows how one would connect to just a specific Wiiremote by Mac-Address*/
CWiiRemote::CWiiRemote(char *wii_btaddr)
{
SetBluetoothAddress(wii_btaddr);
@@ -153,7 +153,7 @@ CWiiRemote::~CWiiRemote()
}
//---------------------Public-------------------------------------------------------------------
-/* Basicly this just sets up standard control bits */
+/* Basically this just sets up standard control bits */
void CWiiRemote::SetBluetoothAddress(const char *btaddr)
{
static const bdaddr_t b = {{0, 0, 0, 0, 0, 0}}; /* BDADDR_ANY */
diff --git a/tools/EventClients/Clients/WiiRemote/WiiUse_WiiRemote.cpp b/tools/EventClients/Clients/WiiRemote/WiiUse_WiiRemote.cpp
index 66c88e8735..e24c8ed2c9 100644
--- a/tools/EventClients/Clients/WiiRemote/WiiUse_WiiRemote.cpp
+++ b/tools/EventClients/Clients/WiiRemote/WiiUse_WiiRemote.cpp
@@ -77,12 +77,12 @@ void CWiiController::handleACC(float currentRoll, float currentPitch)
if (m_currentAction == ACTION_NONE)
{
if ((g_deadzone - (abs((int)m_rel_roll)) < 5) && (abs((int)m_abs_pitch) < (g_deadzone / 1.5)))
- // crossed the roll deadzone threshhold while inside the pitch deadzone
+ // crossed the roll deadzone threshold while inside the pitch deadzone
{
m_currentAction = ACTION_ROLL;
}
else if ((g_deadzone - (abs((int)m_rel_pitch)) < 5) && (abs((int)m_abs_roll) < (g_deadzone / 1.5)))
- // crossed the pitch deadzone threshhold while inside the roll deadzone
+ // crossed the pitch deadzone threshold while inside the roll deadzone
{
m_currentAction = ACTION_PITCH;
}
@@ -174,7 +174,7 @@ return 0;
float smoothDeg(float oldVal, float newVal)
{
-//If values go over 180 or under -180, weird things happen. This tranforms the values to -360 to 360 instead.
+//If values go over 180 or under -180, weird things happen. This transforms the values to -360 to 360 instead.
if (newVal - oldVal > 300)
return (newVal - 360);
diff --git a/tools/EventClients/README.txt b/tools/EventClients/README.txt
index 591964fb98..51dcab17c3 100644
--- a/tools/EventClients/README.txt
+++ b/tools/EventClients/README.txt
@@ -49,9 +49,9 @@ can however be done using the program "sixaxis.c" available from:
http://www.pabr.org/sixlinux/sixlinux.en.html
-Once pairing for eiher or both has been done, run the ps3d.py program
+Once pairing for either or both has been done, run the ps3d.py program
as root after disabling any existing HID servers that might currently
-be running. The program requires root prvilieges since it listens on
+be running. The program requires root privileges since it listens on
Bluetooth L2CAP PSMs 17 and 19.
Using the PS3 Sixaxis Controller
@@ -72,7 +72,7 @@ The executable depends on libcwiid and libbluetooth and is compiled using
# g++ WiiRemote.cpp -lcwiid -o WiiRemote
The WiiRemote will emulate mouse by default but can be disabled by running with --disable-mouseemulation
The sensitivity of the mouseemulation can be set using the --deadzone_x or --deadzone_y where the number is
-the percentage of the space is considered "dead", higher means more sensative.
+the percentage of the space is considered "dead", higher means more sensitive.
Other commands can be listed with --help
The WiiRemote is mappable with keymap.xml where button id's are the following:
diff --git a/tools/EventClients/examples/python/example_button1.py b/tools/EventClients/examples/python/example_button1.py
index 7b208252cb..dd524a3788 100755
--- a/tools/EventClients/examples/python/example_button1.py
+++ b/tools/EventClients/examples/python/example_button1.py
@@ -51,7 +51,7 @@ def main():
# Every valid packet sent to XBMC acts as a ping, however if no valid
# packets NEED to be sent (eg. the user hasn't pressed a key in 50 seconds)
# then you can use the PacketPING class to send a ping packet (which is
- # basically just an emppty packet). See below.
+ # basically just an empty packet). See below.
# Once a client times out, it will need to reissue the HELO packet.
# Currently, since this is a unidirectional protocol, there is no way
diff --git a/tools/EventClients/lib/java/src/org/xbmc/eventclient/PacketBUTTON.java b/tools/EventClients/lib/java/src/org/xbmc/eventclient/PacketBUTTON.java
index 2bb85c32d1..b4ba1bbff2 100644
--- a/tools/EventClients/lib/java/src/org/xbmc/eventclient/PacketBUTTON.java
+++ b/tools/EventClients/lib/java/src/org/xbmc/eventclient/PacketBUTTON.java
@@ -73,7 +73,7 @@ public class PacketBUTTON extends Packet {
* <li>"LI:devicename" => LIRC remote map where 'devicename' is the
* actual device's name</li></ul>
* @param button_name a button name defined in the map specified in map_name.
- * For example, if map_name is "KB" refering to the <keyboard> section in Keymap.xml
+ * For example, if map_name is "KB" referring to the <keyboard> section in Keymap.xml
* then, valid button_names include "printscreen", "minus", "x", etc.
* @param repeat this key press should repeat until released (default: 1)
* Note that queued pressed cannot repeat.
@@ -109,7 +109,7 @@ public class PacketBUTTON extends Packet {
* <li>"LI:devicename" => LIRC remote map where 'devicename' is the
* actual device's name</li></ul>
* @param button_name a button name defined in the map specified in map_name.
- * For example, if map_name is "KB" refering to the <keyboard> section in Keymap.xml
+ * For example, if map_name is "KB" referring to the <keyboard> section in Keymap.xml
* then, valid button_names include "printscreen", "minus", "x", etc.
* @param repeat this key press should repeat until released (default: 1)
* Note that queued pressed cannot repeat.
diff --git a/tools/EventClients/lib/java/src/org/xbmc/eventclient/PacketMOUSE.java b/tools/EventClients/lib/java/src/org/xbmc/eventclient/PacketMOUSE.java
index 768e06a5ff..6c865ec7c4 100644
--- a/tools/EventClients/lib/java/src/org/xbmc/eventclient/PacketMOUSE.java
+++ b/tools/EventClients/lib/java/src/org/xbmc/eventclient/PacketMOUSE.java
@@ -30,7 +30,7 @@ public class PacketMOUSE extends Packet {
/**
* A MOUSE packets sets the mouse position in XBMC
- * @param x horitontal position ranging from 0 to 65535
+ * @param x horizontal position ranging from 0 to 65535
* @param y vertical position ranging from 0 to 65535
*/
public PacketMOUSE(int x, int y)
diff --git a/tools/EventClients/lib/java/src/org/xbmc/eventclient/XBMCClient.java b/tools/EventClients/lib/java/src/org/xbmc/eventclient/XBMCClient.java
index e48eb92740..9642a6d76b 100644
--- a/tools/EventClients/lib/java/src/org/xbmc/eventclient/XBMCClient.java
+++ b/tools/EventClients/lib/java/src/org/xbmc/eventclient/XBMCClient.java
@@ -200,7 +200,7 @@ public class XBMCClient
* <li>"LI:devicename" => LIRC remote map where 'devicename' is the
* actual device's name</li></ul>
* @param button_name a button name defined in the map specified in map_name.
- * For example, if map_name is "KB" refering to the <keyboard> section in Keymap.xml
+ * For example, if map_name is "KB" referring to the <keyboard> section in Keymap.xml
* then, valid button_names include "printscreen", "minus", "x", etc.
* @param repeat this key press should repeat until released (default: 1)
* Note that queued pressed cannot repeat.
@@ -222,7 +222,7 @@ public class XBMCClient
/**
* Sets the mouse position in XBMC
- * @param x horitontal position ranging from 0 to 65535
+ * @param x horizontal position ranging from 0 to 65535
* @param y vertical position ranging from 0 to 65535
*/
public void sendMouse(int x, int y) throws IOException
diff --git a/tools/EventClients/lib/python/ps3/sixaxis.py b/tools/EventClients/lib/python/ps3/sixaxis.py
index 0f5b370845..f5570065c9 100644
--- a/tools/EventClients/lib/python/ps3/sixaxis.py
+++ b/tools/EventClients/lib/python/ps3/sixaxis.py
@@ -81,7 +81,7 @@ axismap_sixaxis = {
# to make sure all combination keys are checked first
# we sort the keymap's button codes in reverse order
-# this guranties that any bit combined button code
+# this guarantees that any bit combined button code
# will be processed first
keymap_sixaxis_keys = keymap_sixaxis.keys()
keymap_sixaxis_keys.sort()
@@ -205,9 +205,9 @@ class sixaxis():
bytes.extend([0xFF, 0x72])
bytes.extend([0x00, 0x00, 0x00, 0x00])
bytes.extend([0x02]) # 0x02 LED1, 0x04 LED2 ... 0x10 LED4
- # The following sections should set the blink frequncy of
+ # The following sections should set the blink frequency of
# the leds on the controller, but i've not figured out how.
- # These values where suggusted in a mailing list, but no explination
+ # These values where suggested in a mailing list, but no explanation
# for how they should be combined to the 5 bytes per led
#0xFF = 0.5Hz
#0x80 = 1Hz
diff --git a/tools/EventClients/lib/python/xbmcclient.py b/tools/EventClients/lib/python/xbmcclient.py
index f14c7ba68d..9b1e1679b2 100644
--- a/tools/EventClients/lib/python/xbmcclient.py
+++ b/tools/EventClients/lib/python/xbmcclient.py
@@ -337,7 +337,7 @@ class PacketBUTTON (Packet):
"LI:devicename" => LIRC remote map where 'devicename' is the
actual device's name
button_name -- a button name defined in the map specified in map_name.
- For example, if map_name is "KB" refering to the
+ For example, if map_name is "KB" referring to the
<keyboard> section in Keymap.xml then, valid
button_names include "printscreen", "minus", "x", etc.
amount -- unimplemented for now; in the future it will be used for
@@ -388,7 +388,7 @@ class PacketMOUSE (Packet):
def __init__(self, x, y):
"""
Arguments:
- x -- horitontal position ranging from 0 to 65535
+ x -- horizontal position ranging from 0 to 65535
y -- vertical position ranging from 0 to 65535
The range will be mapped to the screen width and height in XBMC
@@ -431,7 +431,7 @@ class PacketLOG (Packet):
Keyword arguments:
loglevel -- the loglevel, follows XBMC standard.
logmessage -- the message to log
- autoprint -- if the logmessage should automaticly be printed to stdout
+ autoprint -- if the logmessage should automatically be printed to stdout
"""
Packet.__init__(self)
self.packettype = PT_LOG
@@ -451,7 +451,7 @@ class PacketACTION (Packet):
Keyword arguments:
loglevel -- the loglevel, follows XBMC standard.
logmessage -- the message to log
- autoprint -- if the logmessage should automaticly be printed to stdout
+ autoprint -- if the logmessage should automatically be printed to stdout
"""
Packet.__init__(self)
self.packettype = PT_ACTION
@@ -513,7 +513,7 @@ class XBMCClient:
def send_notification(self, title="", message="", icon_file=None):
"""Send a notification to the connected XBMC
Keyword Arguments:
- title -- The title/heading for the notifcation
+ title -- The title/heading for the notification
message -- The message to be displayed
icon_file -- location of an icon file, if any (png, jpg, gif)
"""
@@ -564,7 +564,7 @@ class XBMCClient:
"LI:devicename" => LIRC remote map where 'devicename' is the
actual device's name
button -- a button name defined in the map specified in map, above.
- For example, if map is "KB" refering to the <keyboard>
+ For example, if map is "KB" referring to the <keyboard>
section in Keymap.xml then, valid buttons include
"printscreen", "minus", "x", etc.
"""
@@ -585,7 +585,7 @@ class XBMCClient:
"LI:devicename" => LIRC remote map where 'devicename' is the
actual device's name
button -- a button name defined in the map specified in map, above.
- For example, if map is "KB" refering to the <keyboard>
+ For example, if map is "KB" referring to the <keyboard>
section in Keymap.xml then, valid buttons include
"printscreen", "minus", "x", etc.
"""
@@ -613,7 +613,7 @@ class XBMCClient:
Keyword arguments:
loglevel -- the loglevel, follows XBMC standard.
logmessage -- the message to log
- autoprint -- if the logmessage should automaticly be printed to stdout
+ autoprint -- if the logmessage should automatically be printed to stdout
"""
packet = PacketLOG(loglevel, logmessage)
return packet.send(self.sock, self.addr, self.uid)
diff --git a/tools/android/packaging/Makefile.in b/tools/android/packaging/Makefile.in
index 20696ab859..7a2850b96b 100644
--- a/tools/android/packaging/Makefile.in
+++ b/tools/android/packaging/Makefile.in
@@ -25,8 +25,8 @@ endif
X86OVERRIDES=XBMC_OVERRIDE_HOST=i686-android-linux XBMC_OVERRIDE_TOOLCHAIN=$(XBMC_X86_TOOLCHAIN)
ARMOVERRIDES=XBMC_OVERRIDE_HOST=arm-linux-androideabi XBMC_OVERRIDE_TOOLCHAIN=$(XBMC_ARM_TOOLCHAIN)
-#this fixes a android ndk fuckup where the pathes to
-#prebuilt stuff follow different name shemes for
+#this fixes a android ndk fuckup where the paths to
+#prebuilt stuff follow different name schemes for
#arm and x86
ifeq ($(findstring i686,$(CPU)),i686)
ARCH=x86
diff --git a/tools/buildsteps/README b/tools/buildsteps/README
index 0fc634940d..048ff84e98 100644
--- a/tools/buildsteps/README
+++ b/tools/buildsteps/README
@@ -1,4 +1,4 @@
-This folder holds all the platform dependend build scripts which are called from the jenkins buildserver.
+This folder holds all the platform dependent build scripts which are called from the jenkins buildserver.
The following ENV variables are available on all scripts:
diff --git a/tools/buildsteps/android-arm64-v8a/configure-depends b/tools/buildsteps/android-arm64-v8a/configure-depends
index 94de43f6c2..705bc53349 100644
--- a/tools/buildsteps/android-arm64-v8a/configure-depends
+++ b/tools/buildsteps/android-arm64-v8a/configure-depends
@@ -3,7 +3,7 @@ XBMC_PLATFORM_DIR=android
. $WORKSPACE/tools/buildsteps/defaultenv
NDK_ARCH=aarch64
-#the following pathes must exist on the slave and use the defined scheme here!
+#the following paths must exist on the slave and use the defined scheme here!
NDK_PATH=$ANDROID_DEV_ROOT/android-ndk-r$NDK_VERSION
TOOLCHAIN=$ANDROID_DEV_ROOT/android-toolchain-$NDK_ARCH-$SDK_VERSION-r$NDK_VERSION
diff --git a/tools/buildsteps/android/configure-depends b/tools/buildsteps/android/configure-depends
index d0ff7790f2..edcfbc7032 100644
--- a/tools/buildsteps/android/configure-depends
+++ b/tools/buildsteps/android/configure-depends
@@ -3,7 +3,7 @@ XBMC_PLATFORM_DIR=android
. $WORKSPACE/tools/buildsteps/defaultenv
NDK_ARCH="arm"
-#the following pathes must exist on the slave and use the defined scheme here!
+#the following paths must exist on the slave and use the defined scheme here!
NDK_PATH=$ANDROID_DEV_ROOT/android-ndk-r$NDK_VERSION
TOOLCHAIN=$ANDROID_DEV_ROOT/android-toolchain-$NDK_ARCH-$SDK_VERSION-r$NDK_VERSION
diff --git a/tools/buildsteps/androidx86/configure-depends b/tools/buildsteps/androidx86/configure-depends
index 15b2802707..9a6e31ceed 100644
--- a/tools/buildsteps/androidx86/configure-depends
+++ b/tools/buildsteps/androidx86/configure-depends
@@ -3,7 +3,7 @@ XBMC_PLATFORM_DIR=android
. $WORKSPACE/tools/buildsteps/defaultenv
NDK_ARCH=x86
-#the following pathes must exist on the slave and use the defined scheme here!
+#the following paths must exist on the slave and use the defined scheme here!
NDK_PATH=$ANDROID_DEV_ROOT/android-ndk-r$NDK_VERSION
TOOLCHAIN=$ANDROID_DEV_ROOT/android-toolchain-$NDK_ARCH-$SDK_VERSION-r$NDK_VERSION
diff --git a/tools/buildsteps/win32/buildffmpeg.sh b/tools/buildsteps/win32/buildffmpeg.sh
index 3eb683eae6..8b5ae23233 100644
--- a/tools/buildsteps/win32/buildffmpeg.sh
+++ b/tools/buildsteps/win32/buildffmpeg.sh
@@ -81,7 +81,7 @@ do_removeOption() {
do_getFFmpegConfig
if [[ "$tools" = "msvc" ]]; then
- # this experimental feature for debuging purpose
+ # this experimental feature for debugging purpose
do_removeOption "--enable-gnutls"
do_removeOption "--disable-debug"
do_addOption "--disable-gnutls"
diff --git a/tools/codegenerator/Helper.groovy b/tools/codegenerator/Helper.groovy
index cdb7b3ed0e..cf195a2dfe 100644
--- a/tools/codegenerator/Helper.groovy
+++ b/tools/codegenerator/Helper.groovy
@@ -267,7 +267,7 @@ public class Helper
String relative = cwd.getAbsoluteFile().toURI().relativize(convertTemplate.getAbsoluteFile().toURI()).getPath()
convertTemplate = new File(parent,relative)
- // This is a fallback case which is hit occationally on OSX as a result
+ // This is a fallback case which is hit occasionally on OSX as a result
// of case mismatches between the two paths in the relativize call above.
if (!convertTemplate.exists())
convertTemplate = new File(parent,cur.toString())
@@ -291,7 +291,7 @@ public class Helper
* </code>
* @param apiType - is the Swig typecode that describes the parameter type from the native method
* @param apiName - is the name of the parameter from the method parameter list in the api
- * @param slName - is the name of the varialbe that holds the parameter from the scripting language
+ * @param slName - is the name of the variable that holds the parameter from the scripting language
* @param method - is the node from the module xml that contains the method description
* @return the code chunk as a string ready to be placed into the generated code.
*/
@@ -312,9 +312,9 @@ public class Helper
* if (${slarg}) PyXBMCGetUnicodeString(${api},${slarg},"${api}");
* </code>
* @param apiType - is the Swig typecode that describes the parameter type from the native method
- * @param apiName - is the name of the varialbe that holds the api parameter
+ * @param apiName - is the name of the variable that holds the api parameter
* @param paramName - is the name of the parameter from the method parameter list in the api
- * @param slName - is the name of the varialbe that holds the parameter from the scripting language
+ * @param slName - is the name of the variable that holds the parameter from the scripting language
* @param method - is the node from the module xml that contains the method description
* @return the code chunk as a string ready to be placed into the generated code.
*/
@@ -397,7 +397,7 @@ public class Helper
String relative = cwd.getAbsoluteFile().toURI().relativize(convertTemplate.getAbsoluteFile().toURI()).getPath()
convertTemplate = new File(parent,relative)
- // This is a fallback case which is hit occationally on OSX as a result
+ // This is a fallback case which is hit occasionally on OSX as a result
// of case mismatches between the two paths in the relativize call above.
if (!convertTemplate.exists())
convertTemplate = new File(parent,cur.toString())
diff --git a/tools/codegenerator/example/Example.call.template b/tools/codegenerator/example/Example.call.template
index f9e84ed185..8674dd44fa 100644
--- a/tools/codegenerator/example/Example.call.template
+++ b/tools/codegenerator/example/Example.call.template
@@ -22,7 +22,7 @@ module.function.each { functionNode ->
lvalue:${SwigTypeParser.SwigType_lstr(param.@type)}
rvalue:${SwigTypeParser.SwigType_str(param.@type)}
code to handle parameter ${index} {
- // declare and set the value that came in from the scripting languge
+ // declare and set the value that came in from the scripting language
ScriptingLanguageType sl_${param.@name} = /* set the value from the scripting language */;
// declare and set the variable that will contain the api parameter
${SwigTypeParser.SwigType_lstr(param.@type)} p_${param.@name};
diff --git a/tools/codegenerator/example/Example.intypemap.template b/tools/codegenerator/example/Example.intypemap.template
index de90963b60..b64a49cb7f 100644
--- a/tools/codegenerator/example/Example.intypemap.template
+++ b/tools/codegenerator/example/Example.intypemap.template
@@ -19,7 +19,7 @@ module.function.each { functionNode ->
type:${SwigTypeParser.SwigType_str(param.@type)}
lvalue-type:${SwigTypeParser.SwigType_lstr(param.@type)}
code to handle parameter ${index} {
- // declare and set the value that came in from the scripting languge
+ // declare and set the value that came in from the scripting language
ScriptingLanguageType sl_${param.@name} = /* set the value from the scripting language */;
// declare and set the variable that will contain the api parameter
${SwigTypeParser.SwigType_lstr(param.@type)} p_${param.@name};
diff --git a/tools/codegenerator/example/Example.returns.template b/tools/codegenerator/example/Example.returns.template
index 074d30f8c5..9f6f75deac 100644
--- a/tools/codegenerator/example/Example.returns.template
+++ b/tools/codegenerator/example/Example.returns.template
@@ -22,7 +22,7 @@ module.function.each { functionNode ->
type:${SwigTypeParser.SwigType_str(param.@type)}
lvalue-type:${SwigTypeParser.SwigType_lstr(param.@type)}
code to handle parameter ${index} {
- // declare and set the value that came in from the scripting languge
+ // declare and set the value that came in from the scripting language
ScriptingLanguageType sl_${param.@name} = /* set the value from the scripting language */;
// declare and set the variable that will contain the api parameter
${SwigTypeParser.SwigType_lstr(param.@type)} p_${param.@name};
diff --git a/tools/depends/README b/tools/depends/README
index a33e3077fa..5a273d38f5 100644
--- a/tools/depends/README
+++ b/tools/depends/README
@@ -21,7 +21,7 @@ TVOS:
You can target the same --prefix path, each setup will be done in an isolated directory. The
last configure/make you do is the one used for Kodi/Xcode.
-#- Android (the pathes are examples and have to match those of docs/READM.android)
+#- Android (the paths are examples and have to match those of docs/READM.android)
#----------------------------------------------------------------------------
arm:
@@ -65,5 +65,5 @@ Details:
2) cmake driven tend to be simple, setup cmake flags right and go. On rare cases, you might
need to diddle the native cmake setup.
- 3) hand crafted Makefiles typically require manual sed tweeks or patching.
+ 3) hand crafted Makefiles typically require manual sed tweaks or patching.