[OpenBIOS] r116 - openbios-devel/config/scripts

svn at openbios.org svn at openbios.org
Fri Mar 23 18:00:01 CET 2007


Author: stepan
Date: 2007-03-23 18:00:01 +0100 (Fri, 23 Mar 2007)
New Revision: 116

Modified:
   openbios-devel/config/scripts/crosscflags
Log:
small fix for width detection


Modified: openbios-devel/config/scripts/crosscflags
===================================================================
--- openbios-devel/config/scripts/crosscflags	2007-03-23 16:26:44 UTC (rev 115)
+++ openbios-devel/config/scripts/crosscflags	2007-03-23 17:00:01 UTC (rev 116)
@@ -14,7 +14,7 @@
 fi
 
 # host long bits test
-if test "$host" = "sparc64" -o "$host" = "ia64" -o "$host" = "x86_64" -o "$host" = "alpha"; then
+if test "$host" = "sparc64" -o "$host" = "ia64" -o "$host" = "amd64" -o "$host" = "alpha"; then
     hostlongbits="64"
 else
     hostlongbits="32"
@@ -27,7 +27,7 @@
 fi
 
 # target long bits test
-if test "$target" = "sparc64" -o "$target" = "ia64" -o "$target" = "x86_64" -o "$target" = "alpha"; then
+if test "$target" = "sparc64" -o "$target" = "ia64" -o "$target" = "amd64" -o "$target" = "alpha"; then
     targetlongbits="64"
 else
     targetlongbits="32"




More information about the OpenBIOS mailing list