diff options
author | Jeff Sickel <jas@corpus-callosum.com> | 2009-09-13 17:51:06 -0400 |
---|---|---|
committer | Jeff Sickel <jas@corpus-callosum.com> | 2009-09-13 17:51:06 -0400 |
commit | 7a7e8ed6b227902528cf8a6bc594bee842d0ea90 (patch) | |
tree | c2c5c1a269c9e88ec073bef02eb3a938dbccaafc /bin | |
parent | 417b681c0d94026da0ad0e79e8e50fe1613f9d65 (diff) | |
download | plan9port-7a7e8ed6b227902528cf8a6bc594bee842d0ea90.tar.gz plan9port-7a7e8ed6b227902528cf8a6bc594bee842d0ea90.tar.bz2 plan9port-7a7e8ed6b227902528cf8a6bc594bee842d0ea90.zip |
9a: fix OS X PowerPC build
http://codereview.appspot.com/117065
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/9a | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -8,7 +8,7 @@ fi aflags="" case "`uname`" in Darwin) - aflags="-arch i386" + aflags="-arch `arch`" esac out=`echo $1 | sed 's/\.s$//;s/$/.o/'` |