Brew Doctor의 다음 경고를 해결하는 방법은 무엇입니까?

Brew Doctor의 다음 경고를 해결하는 방법은 무엇입니까?

맥OS 시에라 10.12.2

최근에 다음과 같은 문제가 발생했습니다.

Warning: Unbrewed .la files were found in /usr/local/lib.
If you didn't put them there on purpose they could cause problems when
building Homebrew formulae, and may need to be deleted.

Unexpected .la files:
  /usr/local/lib/psqlodbcw.la

나는 다음과 같은 다양한 접근 방식을 시도했습니다.

brew unlink postgresql && brew link postgresql
brew link --overwrite postgresql

그러나 이것은 경고를 제거하지 않는 것 같습니다.

어떤 도움을 주셔서 감사합니다

답변1

Homebrew를 통해 PostgreSQL을 설치했고 다른 PostgreSQL을 병렬로 설치하고 싶지 않은 경우. 다음 방법을 사용하여 파일을 안전하게 삭제할 수 있습니다.

rm /usr/local/lib/psqlodbcw.la

그러면 경고가 사라집니다.

관련 정보