diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-07-01 17:35:17 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-07-01 17:35:17 +0000 |
commit | 4b9b0ced3010630c0bd604d9a42867ef56dbb36a (patch) | |
tree | 1ac4f6bd4216ed0cd70cc3eb40a7f4073f164568 | |
parent | 99fcc6252332599c1b620d05467cee188a48b718 (diff) | |
download | busybox-w32-4b9b0ced3010630c0bd604d9a42867ef56dbb36a.tar.gz busybox-w32-4b9b0ced3010630c0bd604d9a42867ef56dbb36a.tar.bz2 busybox-w32-4b9b0ced3010630c0bd604d9a42867ef56dbb36a.zip |
find: fix build failure on certain configs
(found by Cristian Ionescu-Idbohrn <cristian.ionescu-idbohrn@axis.com>)
-rw-r--r-- | findutils/find.c | 5 | ||||
-rw-r--r-- | libbb/Kbuild | 1 |
2 files changed, 4 insertions, 2 deletions
diff --git a/findutils/find.c b/findutils/find.c index cb57665d6..6f2cbbc78 100644 --- a/findutils/find.c +++ b/findutils/find.c | |||
@@ -425,8 +425,9 @@ static int find_type(const char *type) | |||
425 | } | 425 | } |
426 | #endif | 426 | #endif |
427 | 427 | ||
428 | #if ENABLE_FEATURE_FIND_PERM || ENABLE_FEATURE_FIND_MTIME \ | 428 | #if ENABLE_FEATURE_FIND_PERM \ |
429 | || ENABLE_FEATURE_FIND_MMIN | 429 | || ENABLE_FEATURE_FIND_MTIME || ENABLE_FEATURE_FIND_MMIN \ |
430 | || ENABLE_FEATURE_FIND_SIZE | ||
430 | static const char* plus_minus_num(const char* str) | 431 | static const char* plus_minus_num(const char* str) |
431 | { | 432 | { |
432 | if (*str == '-' || *str == '+') | 433 | if (*str == '-' || *str == '+') |
diff --git a/libbb/Kbuild b/libbb/Kbuild index ecd50a616..659586717 100644 --- a/libbb/Kbuild +++ b/libbb/Kbuild | |||
@@ -126,3 +126,4 @@ lib-$(CONFIG_EXPR) += xregcomp.o | |||
126 | lib-$(CONFIG_MDEV) += xregcomp.o | 126 | lib-$(CONFIG_MDEV) += xregcomp.o |
127 | lib-$(CONFIG_LESS) += xregcomp.o | 127 | lib-$(CONFIG_LESS) += xregcomp.o |
128 | lib-$(CONFIG_DEVFSD) += xregcomp.o | 128 | lib-$(CONFIG_DEVFSD) += xregcomp.o |
129 | lib-$(CONFIG_FEATURE_FIND_REGEX) += xregcomp.o | ||