From f321d5f5633687167f8dade47600a9bfb6b61dbb Mon Sep 17 00:00:00 2001 From: Nguyễn Thái Ngọc Duy Date: Wed, 14 Apr 2010 04:44:31 +0200 Subject: win32: Unmask findutils MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Nguyễn Thái Ngọc Duy --- findutils/Config.in | 7 +++++++ 1 file changed, 7 insertions(+) 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 bool "Enable -perm: permissions matching" default y depends on FIND + depends on !PLATFORM_MINGW32 help Enable searching based on file permissions. @@ -57,6 +58,7 @@ config FEATURE_FIND_XDEV bool "Enable -xdev: 'stay in filesystem'" default y depends on FIND + depends on !PLATFORM_MINGW32 help This option allows find to restrict searches to a single filesystem. @@ -79,6 +81,7 @@ config FEATURE_FIND_INUM bool "Enable -inum: inode number matching" default y depends on FIND + depends on !PLATFORM_MINGW32 help Support the 'find -inum' option for searching by inode number. @@ -86,6 +89,7 @@ config FEATURE_FIND_EXEC bool "Enable -exec: execute commands" default y depends on FIND + depends on !PLATFORM_MINGW32 help Support the 'find -exec' option for executing commands based upon the files matched. @@ -94,6 +98,7 @@ config FEATURE_FIND_USER bool "Enable -user: username/uid matching" default y depends on FIND + depends on !PLATFORM_MINGW32 help Support the 'find -user' option for searching by username or uid. @@ -101,6 +106,7 @@ config FEATURE_FIND_GROUP bool "Enable -group: group/gid matching" default y depends on FIND + depends on !PLATFORM_MINGW32 help Support the 'find -group' option for searching by group name or gid. @@ -176,6 +182,7 @@ config FEATURE_FIND_LINKS bool "Enable -links: link count matching" default n depends on FIND + depends on !PLATFORM_MINGW32 help Support the 'find -links' option for matching number of links. -- cgit v1.2.3-55-g6feb