.bash_profileに以下が設定されていると、
.bash_profile
export DYLD_LIBRARY_PATH=/usr/local/mysql/lib:$DYLD_LIBRARY_PATH
sudoしたときに以下メッセージが表示される
Macのバグらしい?です。
参考URL:http://qiita.com/items/b5a6d1c6cdcb22be565f
dyld: DYLD_ environment variables being ignored because main executable (/usr/bin/sudo) is setuid or setgid
いちいち、うるさいので、黙らせる。
.bash_profileの1番最後に以下を追加
.bash_profile
unset LD_LIBRARY_PATH
unset DYLD_LIBRARY_PATH
更新
$ source ~/.bash_profile
これで、邪魔なメッセージが出なくなる。