summaryrefslogtreecommitdiffstats
path: root/rules/findutils.in
diff options
context:
space:
mode:
authorRobert Schwebel <r.schwebel@pengutronix.de>2007-04-26 09:44:06 +0000
committerRobert Schwebel <r.schwebel@pengutronix.de>2007-04-26 09:44:06 +0000
commit65a8fe3c660eebdc46a71923d7f3e58672c8554d (patch)
tree5f15ef9c17f627c66fb54f34ffd29d1f16dbd52b /rules/findutils.in
parenta6f98771041c3a4d8a0a3fc5246911068826a676 (diff)
downloadptxdist-65a8fe3c660eebdc46a71923d7f3e58672c8554d.tar.gz
ptxdist-65a8fe3c660eebdc46a71923d7f3e58672c8554d.tar.xz
busybox: revert BB_ vs. BB_CONFIG_ change which comes due to the fact
that busybox uses a new kconfig. This patch makes it possible to migrate old configurations in a sane time again ... git-svn-id: https://svn.pengutronix.de/svn/ptxdist/trunks/ptxdist-trunk@7122 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 7d64ed90a..2494b2721 100644
--- a/rules/findutils.in
+++ b/rules/findutils.in
@@ -8,27 +8,27 @@ menuconfig FINDUTILS
config FINDUTILS_FIND
bool
- depends on FINDUTILS && !BB_FIND
+ depends on FINDUTILS && !BB_CONFIG_FIND
prompt "find"
help
Searches given directory trees for files matching the specified criteria
comment "busy box' find is selected!"
- depends on FINDUTILS && BB_FIND
+ depends on FINDUTILS && BB_CONFIG_FIND
config FINDUTILS_XARGS
bool
- depends on FINDUTILS && !BB_XARGS
+ depends on FINDUTILS && !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 on FINDUTILS && BB_XARGS
+ depends on FINDUTILS && BB_CONFIG_XARGS
config FINDUTILS_DATABASE
bool
- depends on FINDUTILS && !BB_FIND && !BB_XARGS
+ depends on FINDUTILS && !BB_CONFIG_FIND && !BB_CONFIG_XARGS
select FINDUTILS_FIND
select FINDUTILS_XARGS
prompt "database support"