We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents fd714ad + 0619094 commit 4facda5Copy full SHA for 4facda5
discid/libdiscid.py
@@ -40,6 +40,12 @@ def _find_library(name, version=0):
40
41
lib_file = None
42
43
+ # This seems to be necessary in a bundle/dmg
44
+ if sys.platform == "darwin":
45
+ lib_name = '../Frameworks/lib%s.%d.dylib' % (name, version)
46
+ if os.path.isfile(lib_name):
47
+ lib_file = lib_name
48
+
49
# force prefer current folder
50
# for linux/UNIX-like and Windows
51
if sys.platform in ["darwin", "cygwin"]:
0 commit comments