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

Support Lion and Mountain Lion which return x86-64 for uname -m.

parent 0609ed42
No related branches found
No related tags found
No related merge requests found
......@@ -73,7 +73,7 @@ def_arch_os () {
OS=darwin
# x86 or ppc?
case `uname -m` in
i386) ARCH=x86 ;;
i386|x86_64) ARCH=x86 ;;
*) ARCH=ppc ;;
esac ;;
NetBSD)
......
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