summaryrefslogtreecommitdiff
path: root/platform/osx
diff options
context:
space:
mode:
authorBTaskaya <batuhanosmantaskaya@gmail.com>2018-02-14 19:29:25 +0300
committerBTaskaya <batuhanosmantaskaya@gmail.com>2018-02-14 19:29:25 +0300
commit78dba05fc02c7258b5f9f5a53cf4ea8a3c6ba856 (patch)
treef5c08763b4f6014049d12d3c238f1eb320254507 /platform/osx
parent79f48cde3d9c47e64cca6090c3db0bff1c9e557f (diff)
PEP3101 applied with changing old type string formatting as new ones
Diffstat (limited to 'platform/osx')
-rw-r--r--platform/osx/SCsub6
1 files changed, 3 insertions, 3 deletions
diff --git a/platform/osx/SCsub b/platform/osx/SCsub
index 5efe2d0b22..4dfa46528a 100644
--- a/platform/osx/SCsub
+++ b/platform/osx/SCsub
@@ -7,10 +7,10 @@ def make_debug(target, source, env):
if (env["macports_clang"] != 'no'):
mpprefix = os.environ.get("MACPORTS_PREFIX", "/opt/local")
mpclangver = env["macports_clang"]
- os.system(mpprefix + '/libexec/llvm-' + mpclangver + '/bin/llvm-dsymutil %s -o %s.dSYM' % (target[0], target[0]))
+ os.system(mpprefix + '/libexec/llvm-' + mpclangver + '/bin/llvm-dsymutil {0} -o {0}.dSYM'.format(target[0]))
else:
- os.system('dsymutil %s -o %s.dSYM' % (target[0], target[0]))
- os.system('strip -u -r %s' % (target[0]))
+ os.system('dsymutil {0} -o {0}.dSYM'.format(target[0]))
+ os.system('strip -u -r {0}'.format(target[0]))
files = [
'crash_handler_osx.mm',