diff options
author | Matthew Hoops | 2015-01-18 16:58:03 -0500 |
---|---|---|
committer | Matthew Hoops | 2015-01-18 16:58:03 -0500 |
commit | e10512c8b94d2a83ad67d5f854e1f5149bc41f13 (patch) | |
tree | 31f1ee6ad2ee8d305fed195b8322f2fdf9ac9f59 /configure | |
parent | 79c902338b3671e7a7e7cc855c6af0f0148e0ad8 (diff) | |
download | scummvm-rg350-e10512c8b94d2a83ad67d5f854e1f5149bc41f13.tar.gz scummvm-rg350-e10512c8b94d2a83ad67d5f854e1f5149bc41f13.tar.bz2 scummvm-rg350-e10512c8b94d2a83ad67d5f854e1f5149bc41f13.zip |
CONFIGURE: Use "powerpc" instead of "ppc" as config.guess outputs
powerpc-* targets get detected properly again now
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -1318,7 +1318,7 @@ ds) ;; gamecube) _host_os=gamecube - _host_cpu=ppc + _host_cpu=powerpc _host_alias=powerpc-eabi ;; gp2x) @@ -1386,7 +1386,7 @@ openpandora) ;; ppc-amigaos) _host_os=amigaos - _host_cpu=ppc + _host_cpu=powerpc ;; ps2) _host_os=ps2 @@ -1398,7 +1398,7 @@ ps2) ;; ps3) _host_os=ps3 - _host_cpu=ppc + _host_cpu=powerpc _host_alias=powerpc64-ps3-elf # The prefix is always the same on PS3 so we hardcode the default @@ -1444,7 +1444,7 @@ webos) ;; wii) _host_os=wii - _host_cpu=ppc + _host_cpu=powerpc _host_alias=powerpc-eabi ;; wince) @@ -2004,7 +2004,7 @@ cc_check_clean tmp_find_type_with_size.cpp # for the smaller sizes. echo_n "Alignment required... " case $_host_cpu in - i[3-6]86 | amd64 | x86_64 | ppc*) + i[3-6]86 | amd64 | x86_64 | powerpc*) # Unaligned access should work _need_memalign=no ;; @@ -2047,7 +2047,7 @@ case $_host_cpu in echo "MIPS" DEFINES="$DEFINES -DMIPS_TARGET" ;; - ppc*) + powerpc*) echo "PowerPC" DEFINES="$DEFINES -DPPC_TARGET" ;; |