Skip to content

Commit

Permalink
Revise previous commit, keep a *.0.dylib present
Browse files Browse the repository at this point in the history
  • Loading branch information
falkTX committed Oct 17, 2020
1 parent 0f2e3b2 commit dc6c995
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion waflib/Tools/ccroot.py
Original file line number Diff line number Diff line change
Expand Up @@ -578,7 +578,8 @@ def build(bld):

libname = node.name
if libname.endswith('.dylib'):
name3 = name2 = libname.replace('.dylib', '.%s.dylib' % cnum)
name3 = libname.replace('.dylib', '.%s.dylib' % cnums[0])
name2 = libname.replace('.dylib', '.%s.dylib' % cnum)
else:
name3 = libname + '.' + self.vnum
name2 = libname + '.' + cnum
Expand Down

0 comments on commit dc6c995

Please sign in to comment.