我正在尝试编译源代码,但出现了这个错误
make[1]: makedepend: Command not found
你有什么建议吗?
我有 Ubuntu 12 04 LTS、2.6.28-17 内核和 gcc 版本 4.6.3
答案1
$ apt-cache search makedepend xutils-dev - 用于开发的 X Window 系统实用程序
所以你必须安装xutils-dev
包(其中包括程序 makedepend).xutils-dev
通过在终端上运行以下命令来安装包,
sudo apt-get install xutils-dev
答案2
$ makedepend
The program 'makedepend' is currently not installed. You can install it by typing:
sudo apt-get install xutils-dev
You will have to enable the component called 'main'
将来,输入该命令会自动在存储库中搜索它,并在系统中找不到该命令时建议可以安装的软件包变体。