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:
Andreas Färber
2010-10-03 14:28:10 +00:00
committed by Blue Swirl
parent efd4a7dbcf
commit ee4c2ebdfa

View File

@@ -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