summaryrefslogtreecommitdiffstats
path: root/rules/diffutils.in
blob: 3e11797532a99ddbe2edd9e11ceeb58e130cbee1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
## SECTION=shell_and_console
menuconfig DIFFUTILS
	tristate
	select LIBC_RT if DIFFUTILS_DIFF
	select GCCLIBS_GCC_S if DIFFUTILS_CMP
	prompt "gnu diffutils                 "
	help
	  The GNU diffutils package, containing
	  cmp, diff, diff3 and sdiff

if DIFFUTILS

config DIFFUTILS_DIFF
	bool
	prompt "diff"
	depends on !BUSYBOX_DIFF || ALLYES
	help
	  diff - compare files line by line

comment "BusyBox' diff selected"
	depends on BUSYBOX_DIFF

config DIFFUTILS_DIFF3
	bool
	prompt "diff3"
	help
	  diff3 - compare three files line by line

config DIFFUTILS_SDIFF
	bool
	prompt "sdiff"
	help
	  sdiff - side-by-side merge of file differences

config DIFFUTILS_CMP
	bool
	prompt "cmp"
	depends on !BUSYBOX_CMP || ALLYES
	help
	  cmp - compare two files byte by byte

comment "BusyBox' cmp selected"
	depends on BUSYBOX_CMP

endif