diff options
author | BTaskaya <batuhanosmantaskaya@gmail.com> | 2018-02-14 19:29:25 +0300 |
---|---|---|
committer | BTaskaya <batuhanosmantaskaya@gmail.com> | 2018-02-14 19:29:25 +0300 |
commit | 78dba05fc02c7258b5f9f5a53cf4ea8a3c6ba856 (patch) | |
tree | f5c08763b4f6014049d12d3c238f1eb320254507 /platform/x11/SCsub | |
parent | 79f48cde3d9c47e64cca6090c3db0bff1c9e557f (diff) |
PEP3101 applied with changing old type string formatting as new ones
Diffstat (limited to 'platform/x11/SCsub')
-rw-r--r-- | platform/x11/SCsub | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/platform/x11/SCsub b/platform/x11/SCsub index b18757337a..d0f77892ef 100644 --- a/platform/x11/SCsub +++ b/platform/x11/SCsub @@ -4,9 +4,9 @@ import os Import('env') def make_debug(target, source, env): - os.system('objcopy --only-keep-debug %s %s.debugsymbols' % (target[0], target[0])) - os.system('strip --strip-debug --strip-unneeded %s' % (target[0])) - os.system('objcopy --add-gnu-debuglink=%s.debugsymbols %s' % (target[0], target[0])) + os.system('objcopy --only-keep-debug {0} {0}.debugsymbols'.format(target[0])) + os.system('strip --strip-debug --strip-unneeded {0}'.format(target[0])) + os.system('objcopy --add-gnu-debuglink={0}.debugsymbols {0}'.format(target[0])) common_x11 = [ "context_gl_x11.cpp", |