[EMAIL PROTECTED] schrieb: > The second issue is that the pipe '|' seems to discard data sent to its > stdin, so for example if I type: > > ps | more > > I just return to the bash shell with nothing being sent to more's stdin.
Did you compile a static busybox against glibc? >From applets/applet.c: #if ENABLE_STATIC && defined(__GLIBC__) && !defined(__UCLIBC__) #warning Static linking against glibc produces buggy executables #warning (glibc does not cope well with ld --gc-sections). #warning See sources.redhat.com/bugzilla/show_bug.cgi?id=3400 #warning Note that glibc is unsuitable for static linking anyway. #warning If you still want to do it, remove -Wl,--gc-sections #warning from file scripts/trylink and remove this warning. #error Aborting compilation. #endif _______________________________________________ busybox mailing list [email protected] http://busybox.net/cgi-bin/mailman/listinfo/busybox
