# HG changeset patch # User arpi # Date 1019613277 0 # Node ID d4bc84e7c0ad8ffe260dbabe6e1bfe5c47a94cb5 # Parent ef85f6de947c93cafe5c3c7f49f192e7c18fee45 fix system_name case diff -r ef85f6de947c -r d4bc84e7c0ad configure --- a/configure Wed Apr 24 00:49:06 2002 +0000 +++ b/configure Wed Apr 24 01:54:37 2002 +0000 @@ -315,6 +315,15 @@ esac else system_name=`echo $_target | cut -d '-' -f 2` + case "`echo $system_name | tr A-Z a-z`" in + linux) system_name=Linux ;; + freebsd) system_name=FreeBSD ;; + netbsd) system_name=NetBSD ;; + bsd/os) system_name=BSD/OS ;; + openbsd) system_name=OpenBSD ;; + sunos) system_name=SunOS ;; + qnx) system_name=QNX ;; + esac host_arch=`echo $_target | cut -d '-' -f 1` fi