Skip to content
Snippets Groups Projects
Commit 586be50c authored by Raymond Toy's avatar Raymond Toy
Browse files

Use ppc as the default directory for ppc/darwin.

parent 3073cc1f
No related branches found
No related tags found
No related merge requests found
......@@ -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 ;;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment