aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArkadiusz Miskiewicz <arekm@maven.pl>2007-10-29 18:50:21 +0000
committerArkadiusz Miskiewicz <arekm@maven.pl>2007-10-29 18:50:21 +0000
commit3d92447cd3201d78d5830baa701df890a6ee265b (patch)
treeafe80e7a2a76d12118e61d1e317f9481b63e8d5b
parent7f577666ceb792296402da3ec3c194dd4d988864 (diff)
downloadsuspend-utils-3d92447cd3201d78d5830baa701df890a6ee265b.tar.gz
Recognize powerpc-* as ppc. Spoted on system with:
$ ./config.guess powerpc-unknown-linux-gnu
-rw-r--r--configure.ac6
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac
index 90ecf64..c718846 100644
--- a/configure.ac
+++ b/configure.ac
@@ -104,9 +104,9 @@ if test "${enable_create_device}" = "yes"; then
fi
case "${host}" in
- i?86-*) ARCH="x86";;
- x86_*-*) ARCH="x86";;
- ppc-*) ARCH="ppc";;
+ i?86-*) ARCH="x86";;
+ x86_*-*) ARCH="x86";;
+ ppc-*|powerpc-*) ARCH="ppc";;
esac
CONFIG_FEATURES=""