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.
我正在尝试解决 Debian 软件包中的错误,但要修复此错误,我需要更改源中文件的名称。此包使用格式 3.0(被子)。如何为更改文件名创建补丁?
我向您展示了一个 lib 文件的示例
首先,您需要编辑 Makefile 并更改此行(在本例中为 lib)
LIBS = -lfoo -lanotherlib
然后创建 debian/patches/foo.patch
dquilt new foo.patch dquilt add Makefile sed -i -e 's/-lfoo/-lbar/g' Makefile dquilt refresh dquilt header -e
...您的补丁说明在这里.....
最后构建它