From 137276e3c90ce7b56d2e4e04afcbf9d2b4177856 Mon Sep 17 00:00:00 2001 From: Brian Behlendorf Date: Fri, 26 Jun 2009 14:29:42 -0700 Subject: [PATCH] Should be powerpc64 not powerpc (powerpc is unsupported) --- config/user-arch.m4 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/user-arch.m4 b/config/user-arch.m4 index 7a09cbfe2b..1ffa28b0eb 100644 --- a/config/user-arch.m4 +++ b/config/user-arch.m4 @@ -8,14 +8,14 @@ AC_DEFUN([ZFS_AC_CONFIG_USER_ARCH], [ AC_MSG_RESULT([$TARGET_ARCH]) case $TARGET_ARCH in - i386|x86_64|powerpc) + i386|x86_64|powerpc64) AC_SUBST([TARGET_ARCH]) AC_SUBST([TARGET_ARCH_DIR]) ;; *) AC_MSG_ERROR([ *** Unsupported architecture $TARGET_ARCH - *** Available architectures: x86, x86_64, powerpc]) + *** Available architectures: x86, x86_64, powerpc64]) ;; esac ])