summaryrefslogtreecommitdiffstats
path: root/rules/diffutils.in
blob: 84ee2297a81146da10a6ed1732cda2965f68d4d3 (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
## SECTION=shell_and_console
menuconfig DIFFUTILS
	tristate
	prompt "gnu diffutils                 "

if DIFFUTILS

config DIFFUTILS_DIFF
	bool
	prompt "diff"
	depends on !BUSYBOX_DIFF
	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
	help
	  cmp - compare two files byte by byte

comment "BusyBox' cmp selected"
	depends on BUSYBOX_CMP

endif