Skip to content

Commit 4facda5

Browse files
committedJan 29, 2017
Merge branch 'dmg'
According to luks py2app still isn't fixed so this is necessary for Picard. See pull request #42 and issue #43
2 parents fd714ad + 0619094 commit 4facda5

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed
 

‎discid/libdiscid.py

+6
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,12 @@ def _find_library(name, version=0):
4040

4141
lib_file = None
4242

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+
4349
# force prefer current folder
4450
# for linux/UNIX-like and Windows
4551
if sys.platform in ["darwin", "cygwin"]:

0 commit comments

Comments
 (0)