See attached.
diff --git a/coreutils/uname.c b/coreutils/uname.c
index b96d76b..2568962 100644
--- a/coreutils/uname.c
+++ b/coreutils/uname.c
@@ -139,7 +139,11 @@ int uname_main(int argc UNUSED_PARAM, char **argv)
 #endif
        strcpy(uname_info.processor, unknown_str);
        strcpy(uname_info.platform, unknown_str);
-       strcpy(uname_info.os, "GNU/Linux");
+       strcpy(uname_info.os,
+#ifdef __GLIBC__
+               "GNU/"
+#endif
+               "Linux");
 #if 0
        /* Fedora does something like this */
        strcpy(uname_info.processor, uname_info.name.machine);
_______________________________________________
busybox mailing list
busybox@busybox.net
http://lists.busybox.net/mailman/listinfo/busybox

Reply via email to