Skip to content

Commit

Permalink
Fix zlib for OSX nighly
Browse files Browse the repository at this point in the history
  • Loading branch information
sjoelund committed Mar 4, 2016
1 parent 224e2c4 commit f8a8026
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile.common
Expand Up @@ -434,16 +434,16 @@ $(LIBMODELICAEXTERNALC):
test ! `uname` = Darwin || install_name_tool -id @rpath/libModelicaExternalC.0.dylib "$@"
@test -f "$@"
$(LIBMODELICASTANDARDTABLES): $(LIBMODELICAEXTERNALC)
test ! `uname` = Darwin || (install_name_tool -id @rpath/libModelicaStandardTables.0.dylib "$@" && install_name_tool -change "$(LIBMODELICAMATIO:%.dylib=%.0.dylib)" @rpath/libModelicaMatIO.0.dylib "$@")
test ! `uname` = Darwin || (install_name_tool -id @rpath/libModelicaStandardTables.0.dylib "$@" && install_name_tool -change "$(LIBMODELICAMATIO:%.dylib=%.0.dylib)" @rpath/libModelicaMatIO.0.dylib "$@" && install_name_tool -change "$(LIBMODELICAZLIB:%.dylib=%.0.dylib)" @rpath/libzlib.0.dylib "$@")
@test -f "$@"
$(LIBMODELICAZLIB): $(LIBMODELICAEXTERNALC)
test ! `uname` = Darwin || install_name_tool -id @rpath/libzlib.0.dylib "$@"
@test -f "$@"
$(LIBMODELICAIO): $(LIBMODELICAEXTERNALC)
test ! `uname` = Darwin || (install_name_tool -id @rpath/libModelicaIO.0.dylib "$@" && install_name_tool -change "$(LIBMODELICAMATIO:%.dylib=%.0.dylib)" @rpath/libModelicaMatIO.0.dylib "$@")
test ! `uname` = Darwin || (install_name_tool -id @rpath/libModelicaIO.0.dylib "$@" && install_name_tool -change "$(LIBMODELICAMATIO:%.dylib=%.0.dylib)" @rpath/libModelicaMatIO.0.dylib "$@" && install_name_tool -change "$(LIBMODELICAZLIB:%.dylib=%.0.dylib)" @rpath/libzlib.0.dylib "$@")
@test -f "$@"
$(LIBMODELICAMATIO): $(LIBMODELICAEXTERNALC)
test ! `uname` = Darwin || install_name_tool -id @rpath/libModelicaMatIO.0.dylib "$@"
test ! `uname` = Darwin || (install_name_tool -id @rpath/libModelicaMatIO.0.dylib "$@" && install_name_tool -change "$(LIBMODELICAZLIB:%.dylib=%.0.dylib)" @rpath/libzlib.0.dylib "$@")
@test -f "$@"

git-clean:
Expand Down

0 comments on commit f8a8026

Please sign in to comment.