mirror of
https://gitlab.com/qemu-project/openbios.git
synced 2024-02-13 08:34:06 +08:00
switch-arch: Fix recognition of x86_64 target as 64-bit
The comparison would've always been false due to missing $. Signed-off-by: Andreas Färber <andreas.faerber@web.de> Signed-off-by: Blue Swirl <blauwirbel@gmail.com> git-svn-id: svn://coreboot.org/openbios/trunk/openbios-devel@880 f158a5a8-5612-0410-a976-696ce0be7e32
This commit is contained in:
committed by
Blue Swirl
parent
efd4a7dbcf
commit
ee4c2ebdfa
@@ -51,7 +51,7 @@ crosscflags()
|
||||
|
||||
# target long bits test
|
||||
if test "$target" = "sparc64" -o "$target" = "ia64" \
|
||||
-o "$target" = "amd64" -o "target" = "x86_64" \
|
||||
-o "$target" = "amd64" -o "$target" = "x86_64" \
|
||||
-o "$target" = "alpha"; then
|
||||
targetlongbits="64"
|
||||
else
|
||||
|
||||
Reference in New Issue
Block a user