Skip to content

Commit fd03775

Browse files
authored
build_platform should be all-lowercase (kivy#2864)
1 parent 2a45049 commit fd03775

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

pythonforandroid/util.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,9 @@
88
from pythonforandroid.logger import (logger, Err_Fore, error, info)
99

1010

11-
build_platform = '{system}-{machine}'.format(
12-
system=uname().system, machine=uname().machine.lower())
11+
build_platform = "{system}-{machine}".format(
12+
system=uname().system, machine=uname().machine
13+
).lower()
1314
"""the build platform in the format `system-machine`. We use
1415
this string to define the right build system when compiling some recipes or
1516
to get the right path for clang compiler"""

0 commit comments

Comments
 (0)