Skip to content

Commit

Permalink
Merge pull request #4021 from isuruf/patch-10
Browse files Browse the repository at this point in the history
Fix noarch get_shlib_ext for osx
  • Loading branch information
jjhelmus authored Aug 20, 2020
2 parents 21cef15 + 30e77d2 commit 1bfab63
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion conda_build/environ.py
Original file line number Diff line number Diff line change
Expand Up @@ -504,7 +504,7 @@ def get_shlib_ext(host_platform):
# Return the shared library extension.
if host_platform.startswith('win'):
return '.dll'
elif host_platform.startswith('osx'):
elif host_platform in ['osx', 'darwin']:
return '.dylib'
elif host_platform.startswith('linux'):
return '.so'
Expand Down

0 comments on commit 1bfab63

Please sign in to comment.