10000 Merge pull request #3026 from T-Dynamos/no-shelx · emersonmx/python-for-android@6dc7d8d · GitHub
[go: up one dir, main page]

Skip to content

Commit 6dc7d8d

Browse files
authored
Merge pull request kivy#3026 from T-Dynamos/no-shelx
`archs.py`: remove backslash logic
2 parents 71c8cc0 + 19bebcd commit 6dc7d8d

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

pythonforandroid/archs.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -144,9 +144,8 @@ def get_env(self, with_flags_in_cc=True):
144144
' '
145145
+ " ".join(
146146
[
147-
"-L'"
148-
+ link_path.replace("'", "'\"'\"'")
149-
+ "'" # no shlex.quote in py2
147+
"-L"
148+
+ link_path
150149
for link_path in self.extra_global_link_paths
151150
]
152151
)

0 commit comments

Comments
 (0)
0