Fix hardware detection on aix.

This commit is contained in:
Carl Eugen Hoyos 2014-03-13 08:34:45 +01:00
parent 7d7487e85c
commit aac9e56759
1 changed files with 8 additions and 4 deletions

12
configure vendored
View File

@ -2505,14 +2505,18 @@ windres_default="windres"
nogas=":"
# machine
arch_default=$(uname -m)
cpu="generic"
# OS
target_os_default=$(tolower $(uname -s))
host_os=$target_os_default
# machine
if test "$target_os_default" = aix; then
arch_default=$(uname -p)
else
arch_default=$(uname -m)
fi
cpu="generic"
# configurable options
enable $PROGRAM_LIST
enable $DOCUMENT_LIST