| commit | 19062483b566329e88b658120cdf94760d9bbcaa | [log] [tgz] |
|---|---|---|
| author | Petr Machata <pmachata@redhat.com> | Mon Nov 01 16:06:12 2010 +0100 |
| committer | Joe Damato <ice799@gmail.com> | Sun Nov 28 20:08:01 2010 -0800 |
| tree | 746e2ca04bbb261f8966fb85151054a0e52bddb0 | |
| parent | fe1c171b8988a4e9a882b11291faf9d3fa09e944 [diff] [blame] |
Fix arch detection on powerpc64
diff --git a/configure.ac b/configure.ac index a16bd3f..d1cb78a 100644 --- a/configure.ac +++ b/configure.ac
@@ -19,7 +19,7 @@ case "${host_cpu}" in arm*|sa110) HOST_CPU="arm" ;; i?86) HOST_CPU="i386" ;; - powerpc|ppc64) HOST_CPU="ppc" ;; + powerpc|powerpc64) HOST_CPU="ppc" ;; sun4u|sparc64) HOST_CPU="sparc" ;; s390x) HOST_CPU="s390" ;; *) HOST_CPU="${host_cpu}" ;;