Skip to content

Commit 19bebcd

Browse files
committed
archs.py: remove backslash logic
1 parent 5dc17e1 commit 19bebcd

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)