We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8cd69dc commit 7ad0207Copy full SHA for 7ad0207
1 file changed
pythonforandroid/bootstrap.py
@@ -265,7 +265,9 @@ def strip_libraries(self, arch):
265
return
266
env = arch.get_env()
267
tokens = shlex.split(env['STRIP'])
268
- strip = sh.Command(tokens[0]).bake(tokens[1:])
+ strip = sh.Command(tokens[0])
269
+ if len(tokens) > 1:
270
+ strip = strip.bake(tokens[1:])
271
272
libs_dir = join(self.dist_dir, '_python_bundle',
273
'_python_bundle', 'modules')
0 commit comments