summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Horman <horms@verge.net.au>2007-02-01 17:09:16 +0900
committerSimon Horman <horms@verge.net.au>2007-02-01 17:16:53 +0900
commit11d346a8339771bc04708f1595d8ac76de4c661a (patch)
tree90422913a1afb5952a641951669910bd1ef56b4e
parent843c2d1ec1bbd2a1c46c99aa24eb1ae0b2109bd6 (diff)
kexec-tools: Add sh support to configure.ac
Signed-off-by: Simon Horman <horms@verge.net.au>
-rw-r--r--configure.ac5
1 files changed, 4 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 7c72845..017d06c 100644
--- a/configure.ac
+++ b/configure.ac
@@ -31,12 +31,15 @@ case $host_cpu in
s390x )
host_cpu="s390"
;;
+ sh4|sh3 )
+ host_cpu="sh"
+ ;;
* )
host_cpu="$host_cpu"
;;
esac
case $host_cpu in
- i386|ppc|x86_64|alpha|ppc64|ia64|s390)
+ i386|ppc|x86_64|alpha|ppc64|ia64|s390|sh)
;;
* )
AC_MSG_ERROR([ unsupported architecture $host_cpu])