summaryrefslogtreecommitdiff
path: root/tools/gyp/pylib/gyp/mac_tool.py
diff options
context:
space:
mode:
authorMattIPv4 <matthew@cowley.org.uk>2019-08-20 16:20:31 +0100
committerRich Trott <rtrott@gmail.com>2019-08-22 21:24:39 -0700
commit6726f567d7110c0e3f402babb6e0bbdfd2a97156 (patch)
tree979fa9bc418240d3ee7219721495e540bc7cb5d2 /tools/gyp/pylib/gyp/mac_tool.py
parent6c5ca74c9313e52cd5bba351d558f75240eb3fd6 (diff)
downloadandroid-node-v8-6726f567d7110c0e3f402babb6e0bbdfd2a97156.tar.gz
android-node-v8-6726f567d7110c0e3f402babb6e0bbdfd2a97156.tar.bz2
android-node-v8-6726f567d7110c0e3f402babb6e0bbdfd2a97156.zip
gyp: remove semicolons (Python != JavaScript)
PR-URL: https://github.com/nodejs/node/pull/29228 Reviewed-By: Christian Clauss <cclauss@me.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Rod Vagg <rod@vagg.org> Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
Diffstat (limited to 'tools/gyp/pylib/gyp/mac_tool.py')
-rwxr-xr-xtools/gyp/pylib/gyp/mac_tool.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/gyp/pylib/gyp/mac_tool.py b/tools/gyp/pylib/gyp/mac_tool.py
index ec22d260d1..409c7fedbd 100755
--- a/tools/gyp/pylib/gyp/mac_tool.py
+++ b/tools/gyp/pylib/gyp/mac_tool.py
@@ -285,7 +285,7 @@ class MacTool(object):
def ExecPackageIosFramework(self, framework):
# Find the name of the binary based on the part before the ".framework".
binary = os.path.basename(framework).split('.')[0]
- module_path = os.path.join(framework, 'Modules');
+ module_path = os.path.join(framework, 'Modules')
if not os.path.exists(module_path):
os.mkdir(module_path)
module_template = 'framework module %s {\n' \
@@ -346,7 +346,7 @@ class MacTool(object):
WriteHmap(out, filelist)
def ExecCopyIosFrameworkHeaders(self, framework, *copy_headers):
- header_path = os.path.join(framework, 'Headers');
+ header_path = os.path.join(framework, 'Headers')
if not os.path.exists(header_path):
os.makedirs(header_path)
for header in copy_headers: