mirror of
https://gitlab.com/qemu-project/openbios.git
synced 2024-02-13 08:34:06 +08:00
small fix for width detection
git-svn-id: svn://coreboot.org/openbios/openbios-devel@116 f158a5a8-5612-0410-a976-696ce0be7e32
This commit is contained in:
@@ -14,7 +14,7 @@ else
|
||||
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 @@ else
|
||||
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"
|
||||
|
||||
Reference in New Issue
Block a user