From 19bebcd67ff0d8cbd55e9cbe814e2fd7a9422007 Mon Sep 17 00:00:00 2001 From: Ansh Dadwal Date: Sun, 2 Jun 2024 12:51:28 +0530 Subject: [PATCH] `archs.py`: remove backslash logic --- pythonforandroid/archs.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/pythonforandroid/archs.py b/pythonforandroid/archs.py index b065174592..4137768096 100644 --- a/pythonforandroid/archs.py +++ b/pythonforandroid/archs.py @@ -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 ] )