Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我用 make install 安装了 php。现在我转到我编译我的 php 的目录并执行make uninstall. 它抛出这个错误make: *** No rule to make target 'uninstall'. stop.。
make uninstall
make: *** No rule to make target 'uninstall'. stop.
到底是怎么回事?
Centos6
PHP 5
如果没有“卸载”目标,则没有任何自动卸载和删除文件的方法。
如果幸运的话,你在一个 100% 专用目录(例如 /opt/your/php)中构建了你的 php,那么卸载可能就像删除这个专用目录一样简单,因为在构建/编译时生成的所有内容都将包含在这个目录中。