summaryrefslogtreecommitdiffstats
path: root/rules/diffutils.in
diff options
context:
space:
mode:
authorJuergen Beisert <j.beisert@pengutronix.de>2008-07-09 15:41:37 +0000
committerJuergen Beisert <j.beisert@pengutronix.de>2008-07-09 15:41:37 +0000
commit09c8729e9426f29437640f4e4e9c12f0a6cdb656 (patch)
tree7003654dbcb2f110bd950bce4b8285673615cf1b /rules/diffutils.in
parentd972b1303a27617e9e6fbe4d0c51f49c5960fb2f (diff)
downloadptxdist-09c8729e9426f29437640f4e4e9c12f0a6cdb656.tar.gz
ptxdist-09c8729e9426f29437640f4e4e9c12f0a6cdb656.tar.xz
* diffutils: Omit diff and cmp if these components
are provided by busybox git-svn-id: https://svn.pengutronix.de/svn/ptxdist/trunks/ptxdist-trunk@8637 33e552b5-05e3-0310-8538-816dae2090ed
Diffstat (limited to 'rules/diffutils.in')
-rw-r--r--rules/diffutils.in8
1 files changed, 8 insertions, 0 deletions
diff --git a/rules/diffutils.in b/rules/diffutils.in
index d50c0cff1..29d0455f6 100644
--- a/rules/diffutils.in
+++ b/rules/diffutils.in
@@ -7,9 +7,13 @@ if DIFFUTILS
config DIFFUTILS_DIFF
bool
prompt "diff"
+ depends on !BB_CONFIG_DIFF
help
diff - compare files line by line
+comment "busybox's diff selected"
+ depends on BB_CONFIG_DIFF
+
config DIFFUTILS_DIFF3
bool
prompt "diff3"
@@ -25,7 +29,11 @@ config DIFFUTILS_SDIFF
config DIFFUTILS_CMP
bool
prompt "cmp"
+ depends on !BB_CONFIG_CMP
help
cmp - compare two files byte by byte
+comment "busybox's cmp selected"
+ depends on BB_CONFIG_CMP
+
endif