summaryrefslogtreecommitdiffstats
path: root/rules/findutils.in
diff options
context:
space:
mode:
authorMichael Grzeschik <m.grzeschik@pengutronix.de>2008-06-04 16:32:04 +0000
committerMichael Grzeschik <m.grzeschik@pengutronix.de>2008-06-04 16:32:04 +0000
commit22235eed8d3b5eef97fa28fbf6200cb6e7229423 (patch)
treefe2fe5e77272d3c3ccc9c1193e7fc8f34e13b54b /rules/findutils.in
parent84b12e374b83af064a94a556941f4aece7a28e55 (diff)
downloadptxdist-22235eed8d3b5eef97fa28fbf6200cb6e7229423.tar.gz
ptxdist-22235eed8d3b5eef97fa28fbf6200cb6e7229423.tar.xz
* : missing on in depends fix
git-svn-id: https://svn.pengutronix.de/svn/ptxdist/trunks/ptxdist-trunk@8326 33e552b5-05e3-0310-8538-816dae2090ed
Diffstat (limited to 'rules/findutils.in')
-rw-r--r--rules/findutils.in10
1 files changed, 5 insertions, 5 deletions
diff --git a/rules/findutils.in b/rules/findutils.in
index 3923d6260..f8e0d275c 100644
--- a/rules/findutils.in
+++ b/rules/findutils.in
@@ -10,27 +10,27 @@ if FINDUTILS
config FINDUTILS_FIND
bool
- depends !BB_CONFIG_FIND
+ depends on !BB_CONFIG_FIND
prompt "find"
help
Searches given directory trees for files matching the specified criteria
comment "busy box' find is selected!"
- depends BB_CONFIG_FIND
+ depends on BB_CONFIG_FIND
config FINDUTILS_XARGS
bool
- depends !BB_CONFIG_XARGS
+ depends on !BB_CONFIG_XARGS
prompt "xargs"
help
Can be used to apply a given command to a list of files
comment "busy box' xargs is selected!"
- depends BB_CONFIG_XARGS
+ depends on BB_CONFIG_XARGS
config FINDUTILS_DATABASE
bool
- depends !BB_CONFIG_FIND && !BB_CONFIG_XARGS
+ depends on !BB_CONFIG_FIND && !BB_CONFIG_XARGS
select FINDUTILS_FIND
select FINDUTILS_XARGS
prompt "database support"