From a7cf5d5fce3a7f724409f7bcc6bb0281e9005d99 Mon Sep 17 00:00:00 2001
From: rtoy <rtoy>
Date: Fri, 7 Jan 2011 03:46:42 +0000
Subject: [PATCH] Fix typo in unix-uname.  We want to use "uname" everywhere
 except on freebsd and solaris/x86.

---
 code/unix.lisp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/code/unix.lisp b/code/unix.lisp
index cac45a064..70edfdff6 100644
--- a/code/unix.lisp
+++ b/code/unix.lisp
@@ -5,7 +5,7 @@
 ;;; Carnegie Mellon University, and has been placed in the public domain.
 ;;;
 (ext:file-comment
-  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/unix.lisp,v 1.133 2010/12/22 02:15:39 rtoy Exp $")
+  "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/unix.lisp,v 1.134 2011/01/07 03:46:42 rtoy Exp $")
 ;;;
 ;;; **********************************************************************
 ;;;
@@ -3391,7 +3391,7 @@
 
 (defun unix-uname ()
   (with-alien ((names (struct utsname)))
-    (syscall* (#-(or freebsd solaris) "uname"
+    (syscall* (#-(or freebsd (and x86 solaris)) "uname"
 	       #+(and x86 solaris) "nuname"	; See /usr/include/sys/utsname.h
 	       #+freebsd "__xuname" #+freebsd int
 	       (* (struct utsname)))
-- 
GitLab