| name | language | licence |
|---|---|---|
| Fix mysql lib paths | Other | Other |
| Bazaar revno build phase script | Ruby | BSD |
language: Other
licence: Other
Fix mysql lib paths
options: view full snippet • send to code collector
#!/bin/sh # this script fixes the botched install names within the standard install of MySQL from mysql.com pushd /usr/local/mysql/lib/ for i in *dylib ; do \ sudo install_name_tool -id $PWD/$i $i; \ done popd



library
shared (2)