安装的程序: cmp, diff, diff3, sdiff
Diffutils 软件包里的程序向你显示两个文件或目录的差异,常用来生成软件的补丁。
POSIX 要求 diff 命令能够根据当前的locale处理 whitespace(空白符)。 下面的patch可以解决这个问题:
patch -Np1 -i ../diffutils-2.8.1-i18n-1.patch
上面的这个patch将会导致用一个无效的程序help2man来重新编译 diff.1 man 帮助。结果导致 diff 的 man 不可读。我们可以通过改变 man/diff.1 的时间戳来避免这个问题:
touch man/diff.1
为编译 Diffutils 做准备:
./configure --prefix=/usr
编译软件包:
make
这个软件包没有附带测试程序。
安装软件包:
make install