From: Ian Abbott Date: Wed, 22 Oct 2008 15:46:59 +0000 (+0000) Subject: Fix plain "--with-machine" without parameter. It used the wrong output X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=0978c8aedf75545df323832c8a7d1a7445f87303;p=comedi.git Fix plain "--with-machine" without parameter. It used the wrong output (`uname -r` should have been `uname -m`). --- diff --git a/m4/as-linux.m4 b/m4/as-linux.m4 index 74fcb416..62d62086 100644 --- a/m4/as-linux.m4 +++ b/m4/as-linux.m4 @@ -265,7 +265,7 @@ AC_DEFUN([AS_LINUX_MACHINE], [LINUX_MACHINE=`uname -m`]) if test "x$LINUX_MACHINE" = "xyes"; then - LINUX_MACHINE=`uname -r` + LINUX_MACHINE=`uname -m` fi AC_MSG_NOTICE([Using $LINUX_MACHINE as the uname -m value]) ])