# --- T2-COPYRIGHT-NOTE-BEGIN --- # This copyright note is auto-generated by ./scripts/Create-CopyPatch. # # T2 SDE: package/.../vidix/uname.patch # Copyright (C) 2006 The T2 SDE Project # # More information can be found in the files COPYING and README. # # This patch file is dual-licensed. It is available under the license the # patched project is licensed under, as long as it is an OpenSource license # as defined at http://www.opensource.org/ (e.g. BSD, X11) or under the terms # of the GNU General Public License as published by the Free Software # Foundation; either version 2 of the License, or (at your option) any later # version. # --- T2-COPYRIGHT-NOTE-END --- ignore uname stderr output -- mtr --- vidix-0.9.9.2/configure.orig 2005-06-28 17:16:47.000000000 +0200 +++ vidix-0.9.9.2/configure 2006-10-09 16:32:56.000000000 +0200 @@ -125,7 +125,7 @@ # checking for OS name if test -z "$system_name" ; then # OS name - system_name=`( uname -s ) 2>&1` + system_name=`( uname -s ) 2>/dev/null` case "$system_name" in Linux|FreeBSD|NetBSD|BSD/OS|OpenBSD|SunOS|QNX) ;; @@ -143,7 +143,7 @@ # host's CPU/instruction set if test -z "$host_arch" ; then -host_arch=`( uname -p ) 2>&1` +host_arch=`( uname -p ) 2>/dev/null` case "$host_arch" in i386|sparc|ppc|alpha|arm|mips) ;; @@ -154,7 +154,7 @@ # Maybe uname -m (machine hardware name) returns something we # recognize. - case "`( uname -m ) 2>&1`" in + case "`( uname -m ) 2>/dev/null`" in i*86|x86|x86pc) host_arch=i386 ;; x86_64|amd64) if [ "`$_cc -dumpmachine | grep x86_64 | cut -d- -f1`" = "x86_64" -a \