Skip to content

Commit

Permalink
OSX fix for new MSL tables
Browse files Browse the repository at this point in the history
  • Loading branch information
sjoelund committed Feb 29, 2016
1 parent 5cd19d9 commit c64c048
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile.common
Expand Up @@ -434,13 +434,13 @@ $(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 "$@"
test ! `uname` = Darwin || (install_name_tool -id @rpath/libModelicaStandardTables.0.dylib "$@" && install_name_tool -change "$(LIBMODELICAMATIO:%.dylib=%.0.dylib)" @rpath/libModelicaMatIO.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 "$@"
test ! `uname` = Darwin || (install_name_tool -id @rpath/libModelicaIO.0.dylib "$@" && install_name_tool -change "$(LIBMODELICAMATIO:%.dylib=%.0.dylib)" @rpath/libModelicaMatIO.0.dylib "$@")
@test -f "$@"
$(LIBMODELICAMATIO): $(LIBMODELICAEXTERNALC)
test ! `uname` = Darwin || install_name_tool -id @rpath/libModelicaMatIO.0.dylib "$@"
Expand Down

0 comments on commit c64c048

Please sign in to comment.