diff options
author | Ron Yorston <rmy@pobox.com> | 2022-02-09 13:33:37 +0000 |
---|---|---|
committer | Ron Yorston <rmy@pobox.com> | 2022-02-09 13:33:37 +0000 |
commit | 104fd2e186db21df3e93ed5a4db9a7623b70d46f (patch) | |
tree | 1fa76ff08b3ea28a81d5b4b6e7cc32add6fb8382 | |
parent | 7d5de438255f7571906a798bb6a3de80bd4c09d9 (diff) | |
download | busybox-w32-104fd2e186db21df3e93ed5a4db9a7623b70d46f.tar.gz busybox-w32-104fd2e186db21df3e93ed5a4db9a7623b70d46f.tar.bz2 busybox-w32-104fd2e186db21df3e93ed5a4db9a7623b70d46f.zip |
find: -samefile requires FEATURE_EXTRA_FILE_DATA
Without FEATURE_EXTRA_FILE_DATA we don't have inode numbers to
match so -samefile won't work.
-rw-r--r-- | findutils/find.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/findutils/find.c b/findutils/find.c index 7dbd32dac..2a607d180 100644 --- a/findutils/find.c +++ b/findutils/find.c | |||
@@ -158,7 +158,7 @@ | |||
158 | //config:config FEATURE_FIND_SAMEFILE | 158 | //config:config FEATURE_FIND_SAMEFILE |
159 | //config: bool "Enable -samefile: reference file matching" | 159 | //config: bool "Enable -samefile: reference file matching" |
160 | //config: default y | 160 | //config: default y |
161 | //config: depends on FIND | 161 | //config: depends on FIND && (PLATFORM_POSIX || FEATURE_EXTRA_FILE_DATA) |
162 | //config: help | 162 | //config: help |
163 | //config: Support the 'find -samefile' option for searching by a reference file. | 163 | //config: Support the 'find -samefile' option for searching by a reference file. |
164 | //config: | 164 | //config: |