try reverse order of things

This commit is contained in:
2024-09-07 23:02:28 -05:00
parent 0d428df897
commit c10956cd2f

View File

@@ -173,7 +173,7 @@ if platform == "darwin":
deps = check_deps(source[0].path)
for dep in deps:
if dep.endswith('.framework'):
paths = Split(env["FRAMEWORKPATH"]) + env["LIBPATH"]
paths = env["LIBPATH"] + env["FRAMEWORKPATH"]
else:
paths = env["LIBPATH"]
for search_path in paths: