From a0297cbe1264a9bb61c883b47519288ada713e77 Mon Sep 17 00:00:00 2001 From: Richo Healey Date: Sun, 15 Mar 2015 20:04:04 -0700 Subject: [PATCH] powerpc: Support configure on native ppc[64] hosts --- configure | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/configure b/configure index 760203ae5cf..fdc28eee8c8 100755 --- a/configure +++ b/configure @@ -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 ;;