Skip to content
Snippets Groups Projects
Commit d66ed0ea authored by Aurelien Jarno's avatar Aurelien Jarno
Browse files

tcg-s390: correctly detect s390 with a 64-bit kernel


Signed-off-by: default avatarAurelien Jarno <aurelien@aurel32.net>
parent b0cb640a
No related branches found
No related tags found
No related merge requests found
......@@ -193,6 +193,12 @@ elif check_define __mips__ ; then
cpu="mips"
elif check_define __ia64__ ; then
cpu="ia64"
elif check_define __s390__ ; then
if check_define __s390x__ ; then
cpu="s390x"
else
cpu="s390"
fi
else
cpu=`uname -m`
fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment