如何在 Mac 上卸载通过 config、make、make install 安装的软件

如何在 Mac 上卸载通过 config、make、make install 安装的软件

我想卸载我通过以下方式安装的mutt。

$ cd mutt-1.5.21
$ patch -p1 < ../patch-1.5.21.sidebar.txt
$ ./configure   
$ make
$ make install 

答案1

如果您的 makefile 支持它,make uninstall这将是最简单的。否则,您可以模拟安装过程,make -n install它将向您显示安装命令实际执行的操作(但不会重复执行)。

相关内容