|
|
发表于 2005-5-17 19:40:04
|
显示全部楼层
Please understand the process on how the package is being built. Before "make" and "make install", most packages provide the "configure" script. The "configure" script will determine whether its dependent packages are installed. If not, it stops and report errors. If yes, it continues and write the "Makefile" at the end of configure process such that you can "make" (compile) your own package.
Unlike Debian or Gentoo which may install and uninstall your target packages (together with other dependent packages) with apt or emerge, "make install" will only install the package your just build. In the same sense, "make uninstall" does not handle dependencies. It only uninstall the package that you installed earlier. |
|