mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 21:37:15 +02:00
16 lines
579 B
Diff
16 lines
579 B
Diff
This aids in allocating libclang.so from cindex.py. We do not install
|
|
libclang.so without version into /usr/lib to allow installing multiple versions.
|
|
Therefor, cindex.py should search for the versioned file instead.
|
|
|
|
--- a/bindings/python/clang/cindex.py
|
|
+++ b/bindings/python/clang/cindex.py
|
|
@@ -4244,7 +4244,7 @@ class Config:
|
|
elif name == "Windows":
|
|
file = "libclang.dll"
|
|
else:
|
|
- file = "libclang.so"
|
|
+ file = "libclang.so.@@SOVER@@"
|
|
|
|
if Config.library_path:
|
|
file = Config.library_path + "/" + file
|