From f75e45887c86c8c73a38f387bd93467dda36df3c Mon Sep 17 00:00:00 2001 From: "L. E. Segovia" Date: Fri, 31 Jan 2025 00:06:48 +0000 Subject: Python: fix typo in the inserted workaround for missing RPATH See #14169 --- mesonbuild/dependencies/python.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mesonbuild/dependencies/python.py') diff --git a/mesonbuild/dependencies/python.py b/mesonbuild/dependencies/python.py index f45b4f908..f7417717e 100644 --- a/mesonbuild/dependencies/python.py +++ b/mesonbuild/dependencies/python.py @@ -332,7 +332,7 @@ class PythonPkgConfigDependency(PkgConfigDependency, _PythonDependencyBase): framework_prefix = self.variables['PYTHONFRAMEWORKPREFIX'] # Add rpath, will be de-duplicated if necessary if framework_prefix.startswith('/Applications/Xcode.app/'): - self.link_args += ['-rpath,' + framework_prefix] + self.link_args += ['-Wl,-rpath,' + framework_prefix] class PythonFrameworkDependency(ExtraFrameworkDependency, _PythonDependencyBase): -- cgit v1.2.3