O Homebrew me deu alguns avisos e me disse para excluir certos arquivos das pastas /usr e /Library, que estão atrapalhando certas instalações. Existe uma maneira de remover esses arquivos do diretório raiz ou preciso manualmente
Warning: libiconv files detected at a system prefix other than /usr
Homebrew doesn't provide a libiconv formula, and expects to link against
the system version in /usr. libiconv in other prefixes can cause
compile or link failure, especially if compiled with improper
architectures. OS X itself never installs anything to /usr/local so
it was either installed by a user or some other third party software.
tl;dr: delete these files:
/usr/local/lib/libiconv.dylib
/usr/local/include/iconv.h
Também me disse para excluir outro arquivo
Warning: /Library/Frameworks/Mono.framework detected
This can be picked up by CMake's build system and likely cause the build to
fail. You may need to move this file out of the way to compile CMake.
Responder1
Você pode simplesmente passar os caminhos absolutos para o arquivo rm
, assim:
rm /usr/local/lib/libiconv.dylib
rm /usr/local/include/iconv.h
Eles funcionarão independentemente do diretório em que você estiver.
Para remover um diretório, você usa rm -rf
em vez de rm
.