diff --git a/bin/build.sh b/bin/build.sh
index 537354b7df63441cc515327c4cc537256d63a4ec..85d70e71f95d195be703cad40c0207ba59b2edb3 100755
--- a/bin/build.sh
+++ b/bin/build.sh
@@ -176,8 +176,11 @@ done
 # If -b not given, try to derive one instead of just using "build".
 if [ -z "$BASE" ]; then
     case `uname -s` in
-      Darwin) # We only support darwin-x86 now.  No ppc available anymore.
-	  BASE=darwin ;;
+      Darwin)
+          case `uname -p` in
+            powerpc) BASE=ppc ;;
+            i386) BASE=darwin ;;
+          esac ;;
       SunOS)
 	  case `uname -m` in
 	    sun4u) BASE=sparc ;;