使用 checkinstall 制作 .deb 包时出现以下错误
我正在使用 checkinstall 在我的 ubuntu 机器上准备 debian 软件包。我按照以下程序进行准备,
source_file_directory/ make
checkinstall -D make install
最后我得到了遵循。
Installing with make...Installing with install...
========================= Installation results ===========================
make: *** No rule to make target `install'. Stop.
**** Installation failed. Aborting package creation.
Cleaning up...OK
Bye.
I am using checkinstall to prepare debian package in my ubuntu machine. I did following procedure to prepare it
source_file_directory/ make
checkinstall -D make install
I got following at the end.
Installing with make...Installing with install...
========================= Installation results ===========================
make: *** No rule to make target `install'. Stop.
**** Installation failed. Aborting package creation.
Cleaning up...OK
Bye.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你在make之前做了./configure吗?应该有一个自述文件,其中包含配置/编译/安装包的说明。
您不需要指定“make install”,因为这是默认设置。
Did you do the ./configure before the make? There should be a readme file with instructions to configure/compile/install the package.
You do not need to specify the 'make install' as that is the default.