aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNguyễn Thái Ngọc Duy <pclouds@gmail.com>2010-04-14 04:44:31 +0200
committerNguyễn Thái Ngọc Duy <pclouds@gmail.com>2010-04-20 19:14:23 +0200
commitf321d5f5633687167f8dade47600a9bfb6b61dbb (patch)
tree7e1073f755d78d69114acc45e6a0b67c78f52792
parent7d30147043c566075bab89e4ae2095bed1f2c18b (diff)
downloadbusybox-w32-f321d5f5633687167f8dade47600a9bfb6b61dbb.tar.gz
busybox-w32-f321d5f5633687167f8dade47600a9bfb6b61dbb.tar.bz2
busybox-w32-f321d5f5633687167f8dade47600a9bfb6b61dbb.zip
win32: Unmask findutils
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
-rw-r--r--findutils/Config.in7
1 files changed, 7 insertions, 0 deletions
diff --git a/findutils/Config.in b/findutils/Config.in
index 9cd4a1908..d6610bc43 100644
--- a/findutils/Config.in
+++ b/findutils/Config.in
@@ -42,6 +42,7 @@ config FEATURE_FIND_PERM
42 bool "Enable -perm: permissions matching" 42 bool "Enable -perm: permissions matching"
43 default y 43 default y
44 depends on FIND 44 depends on FIND
45 depends on !PLATFORM_MINGW32
45 help 46 help
46 Enable searching based on file permissions. 47 Enable searching based on file permissions.
47 48
@@ -57,6 +58,7 @@ config FEATURE_FIND_XDEV
57 bool "Enable -xdev: 'stay in filesystem'" 58 bool "Enable -xdev: 'stay in filesystem'"
58 default y 59 default y
59 depends on FIND 60 depends on FIND
61 depends on !PLATFORM_MINGW32
60 help 62 help
61 This option allows find to restrict searches to a single filesystem. 63 This option allows find to restrict searches to a single filesystem.
62 64
@@ -79,6 +81,7 @@ config FEATURE_FIND_INUM
79 bool "Enable -inum: inode number matching" 81 bool "Enable -inum: inode number matching"
80 default y 82 default y
81 depends on FIND 83 depends on FIND
84 depends on !PLATFORM_MINGW32
82 help 85 help
83 Support the 'find -inum' option for searching by inode number. 86 Support the 'find -inum' option for searching by inode number.
84 87
@@ -86,6 +89,7 @@ config FEATURE_FIND_EXEC
86 bool "Enable -exec: execute commands" 89 bool "Enable -exec: execute commands"
87 default y 90 default y
88 depends on FIND 91 depends on FIND
92 depends on !PLATFORM_MINGW32
89 help 93 help
90 Support the 'find -exec' option for executing commands based upon 94 Support the 'find -exec' option for executing commands based upon
91 the files matched. 95 the files matched.
@@ -94,6 +98,7 @@ config FEATURE_FIND_USER
94 bool "Enable -user: username/uid matching" 98 bool "Enable -user: username/uid matching"
95 default y 99 default y
96 depends on FIND 100 depends on FIND
101 depends on !PLATFORM_MINGW32
97 help 102 help
98 Support the 'find -user' option for searching by username or uid. 103 Support the 'find -user' option for searching by username or uid.
99 104
@@ -101,6 +106,7 @@ config FEATURE_FIND_GROUP
101 bool "Enable -group: group/gid matching" 106 bool "Enable -group: group/gid matching"
102 default y 107 default y
103 depends on FIND 108 depends on FIND
109 depends on !PLATFORM_MINGW32
104 help 110 help
105 Support the 'find -group' option for searching by group name or gid. 111 Support the 'find -group' option for searching by group name or gid.
106 112
@@ -176,6 +182,7 @@ config FEATURE_FIND_LINKS
176 bool "Enable -links: link count matching" 182 bool "Enable -links: link count matching"
177 default n 183 default n
178 depends on FIND 184 depends on FIND
185 depends on !PLATFORM_MINGW32
179 help 186 help
180 Support the 'find -links' option for matching number of links. 187 Support the 'find -links' option for matching number of links.
181 188