diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2008-11-17 00:12:17 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2008-11-17 00:12:17 +0000 |
commit | de7a52fff2985955d20af266d1a555c6535c3487 (patch) | |
tree | 79dc8ad17073b8a7fff1b8c263af7735a1af6b00 | |
parent | 3eb4466bf8f55e9c9bf42505f4f0ebe7958d49e5 (diff) | |
download | busybox-de7a52fff2985955d20af266d1a555c6535c3487.tar.gz |
id: do not abort build if we use internal password/group functions.
-rw-r--r-- | coreutils/id.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/coreutils/id.c b/coreutils/id.c index f33f9ab25..6ddb23666 100644 --- a/coreutils/id.c +++ b/coreutils/id.c @@ -17,11 +17,13 @@ #include "libbb.h" +#if !ENABLE_USE_BB_PWD_GRP #if defined(__UCLIBC_MAJOR__) && (__UCLIBC_MAJOR__ == 0) #if (__UCLIBC_MINOR__ < 9) || (__UCLIBC_MINOR__ == 9 && __UCLIBC_SUBLEVEL__ < 30) #error "Sorry, you need at least uClibc version 0.9.30 for id applet to build" #endif #endif +#endif enum { PRINT_REAL = (1 << 0), |