groups

name language licence
Bazaar revno build phase script Ruby BSD
Fix mysql lib paths Other Other
Build number script (Xcode phase) Ruby BSD



language: Other
licence: Other

Fix mysql lib paths

options: view full snippetsend 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

	
(Continues...)