brew doctorしたらこんなWarningが出た
$ brew doctor
Warning: "config" scripts exist outside your system or Homebrew directories.
`./configure` scripts often look for *-config scripts to determine if
software packages are installed, and what additional flags to use when
compiling and linking.
Having additional scripts in your path can confuse software installed via
Homebrew if the config script overrides a system or Homebrew provided
script of the same name. We found the following "config" scripts:
/Users/takc923/.phpenv/shims/php-config
PATH通ってるところに*-config
なファイルあったら、./configure
スクリプトが自分の設定ファイルと勘違いして事故るかもよ、的な警告っぽい。つまり/Users/takc923/.phpenv/shims/
をPATHから外したら直るはず。
とは言えこれをPATHから外すとphpenvが使えなくなる気がするので、brewを実行するときだけ該当のパスを外すようにした。
.zshrc
に以下の行を追加。
alias brew="env PATH=${PATH/~\/\.phpenv\/shims:/} brew"
これでbrewコマンドを叩くと、元の$PATH
から~/.phpenv/shims:
を取り除いたものをPATH
に設定した状態で実行される。
この該当パスが$PATH
の一番後ろにあると:
がなくて正規表現にヒットせずに取り除かれないので注意。
この変数の記法はman zshexpn
のPARAMETER EXPANSION
の項を参照。
これでWarningが消えた
$ brew doctor
Your system is ready to brew.
参考: http://easyramble.com/homebrew-config-scripts-warning.html