powerpc: Support configure on native ppc[64] hosts

This commit is contained in:
Richo Healey 2015-03-15 20:04:04 -07:00
parent c62ae87db2
commit a0297cbe12
1 changed files with 4 additions and 1 deletions

5
configure vendored
View File

@ -461,7 +461,10 @@ case $CFG_CPUTYPE in
CFG_CPUTYPE=aarch64
;;
powerpc)
# At some point, when ppc64[le] support happens, this will need to do
# something clever. For now it's safe to assume that we're only ever
# interested in building 32 bit.
powerpc | ppc | ppc64)
CFG_CPUTYPE=powerpc
;;