-------------- next part --------------
(minor) In klibc-0.192 (and earlier), `type' ash
builtin is somewhat broken:
# type printf
printf/usr/bin/printf
(ie there's no " is " in between the command and
the filename. This patch fixed the problem.
/mjt
exec.c | 4 +++-
1 files changed, 3 insertions(+), 1 deletion(-)
--- ash/exec.c.orig Thu Sep 16 01:36:58 2004
+++ ash/exec.c Sat Nov 13 02:22:02 2004
@@ -1031,8 +1031,10 @@ typecmd(int argc, char **argv)
if (!v_flag)
out1fmt(" is%s ",
cmdp ? " a tracked alias for" : "");
-#endif
out1fmt("%s\n", name);
+#else
+ out1fmt(" is %s\n", name);
+#endif
} else {
if (access(arg, X_OK) == 0) {
if (!v_flag)