fix build on SunOS (Sparc)

R=rsc
CC=codebot
http://codereview.appspot.com/882044
This commit is contained in:
Arvindh Rajesh Tamilmani 2010-04-09 15:28:16 -07:00 committed by Russ Cox
parent f50c3e956f
commit 80c90f271e
5 changed files with 13 additions and 1 deletions

10
INSTALL
View file

@ -21,6 +21,14 @@ esac
PLAN9=`pwd` export PLAN9
PATH=/bin:/usr/bin:$PLAN9/bin:$PATH export PATH
case `uname` in
SunOS)
awk=nawk
;;
*)
awk=awk
;;
esac
echo "+ Mailing list: http://groups.google.com/group/plan9port-dev"
echo "+ Issue tracker: http://code.swtch.com/plan9port/issues/"
@ -123,5 +131,5 @@ if $doinstall; then
echo " PLAN9=$PLAN9 export PLAN9"
echo ' PATH=$PATH:$PLAN9/bin export PATH'
fi
) 2>&1 | tee install.log | awk -f $PLAN9/dist/isum.awk -v 'copy='install.sum
) 2>&1 | tee install.log | $awk -f $PLAN9/dist/isum.awk -v 'copy='install.sum