OS X PowerPC fixes (thanks Cameron Kaiser)

This commit is contained in:
Russ Cox 2011-10-23 17:55:23 -04:00
parent a2deaac4b1
commit 813b3eea8b
6 changed files with 9 additions and 2 deletions

View file

@ -76,6 +76,10 @@ if [ `uname` = Darwin ]; then
echo " i386 found."
echo "OBJTYPE=386" >>$PLAN9/config
;;
*ppc*)
echo " power found."
echo "OBJTYPE=power" >>$PLAN9/config
;;
esac
rm -f ./a.out
fi