svn commit: trunk/busybox/coreutils
vda at busybox.net
vda at busybox.net
Mon Nov 17 00:12:17 UTC 2008
Author: vda
Date: 2008-11-16 16:12:17 -0800 (Sun, 16 Nov 2008)
New Revision: 24066
Log:
id: do not abort build if we use internal password/group functions.
Modified:
trunk/busybox/coreutils/id.c
Changeset:
Modified: trunk/busybox/coreutils/id.c
===================================================================
--- trunk/busybox/coreutils/id.c 2008-11-16 22:21:23 UTC (rev 24065)
+++ trunk/busybox/coreutils/id.c 2008-11-17 00:12:17 UTC (rev 24066)
@@ -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),
More information about the busybox-cvs
mailing list