Added my quick script to fixup Mac dylib paths

This commit is contained in:
Ethan Lee 2021-09-01 12:07:57 -04:00
parent 5abe615507
commit ac0644a70a
1 changed files with 8 additions and 0 deletions

8
desktop_version/fixupMac.sh Executable file
View File

@ -0,0 +1,8 @@
#!/bin/bash
# flibit has this solely for convenience when cleaning up Mac binaries.
install_name_tool -change /usr/local/lib/libSDL2-2.0.0.dylib @rpath/libSDL2-2.0.0.dylib VVVVVV
install_name_tool -change /usr/local/lib/libSDL2_mixer-2.0.0.dylib @rpath/libSDL2_mixer-2.0.0.dylib VVVVVV
strip -S VVVVVV
otool -L VVVVVV