Skip to content

Commit

Permalink
archs.py: remove backslash logic
Browse files Browse the repository at this point in the history
  • Loading branch information
T-Dynamos committed Jun 2, 2024
1 parent 5dc17e1 commit 19bebcd
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions pythonforandroid/archs.py
Original file line number Diff line number Diff line change
Expand Up @@ -144,9 +144,8 @@ def get_env(self, with_flags_in_cc=True):
' '
+ " ".join(
[
"-L'"
+ link_path.replace("'", "'\"'\"'")
+ "'" # no shlex.quote in py2
"-L"
+ link_path
for link_path in self.extra_global_link_paths
]
)
Expand Down

0 comments on commit 19bebcd

Please sign in to comment.