diff options
author | Eric W. Biederman <eric@frodo.(none)> | 2005-07-16 11:57:29 -0600 |
---|---|---|
committer | Eric W. Biederman <ebiederm@xmission.com> | 2006-07-27 03:05:10 -0600 |
commit | 281b71666597a20108a3e341375c401d8367ffa6 (patch) | |
tree | f022f3a1476776d7b7c487cd2579441c632b4064 | |
parent | 481c68bae340cbb762d3ef63cb461ea1abd65dfa (diff) |
Move the configuration changes for s390 into configure
-rw-r--r-- | configure.ac | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index c77e4da..3d81910 100644 --- a/configure.ac +++ b/configure.ac @@ -25,12 +25,15 @@ case $host_cpu in powerpc ) host_cpu="ppc" ;; + s390x ) + host_cpu="s390" + ;; * ) host_cpu="$host_cpu" ;; esac case $host_cpu in - i386|ppc|x86_64|alpha|ppc64|ia64) + i386|ppc|x86_64|alpha|ppc64|ia64|s390) ;; * ) AC_MSG_ERROR([ unsupported architecture $host_cpu]) |