Should be powerpc64 not powerpc (powerpc is unsupported)

This commit is contained in:
Brian Behlendorf 2009-06-26 14:29:42 -07:00
parent 9c347d872f
commit 137276e3c9
1 changed files with 2 additions and 2 deletions

View File

@ -8,14 +8,14 @@ AC_DEFUN([ZFS_AC_CONFIG_USER_ARCH], [
AC_MSG_RESULT([$TARGET_ARCH]) AC_MSG_RESULT([$TARGET_ARCH])
case $TARGET_ARCH in case $TARGET_ARCH in
i386|x86_64|powerpc) i386|x86_64|powerpc64)
AC_SUBST([TARGET_ARCH]) AC_SUBST([TARGET_ARCH])
AC_SUBST([TARGET_ARCH_DIR]) AC_SUBST([TARGET_ARCH_DIR])
;; ;;
*) *)
AC_MSG_ERROR([ AC_MSG_ERROR([
*** Unsupported architecture $TARGET_ARCH *** Unsupported architecture $TARGET_ARCH
*** Available architectures: x86, x86_64, powerpc]) *** Available architectures: x86, x86_64, powerpc64])
;; ;;
esac esac
]) ])