aboutsummaryrefslogtreecommitdiff
path: root/INSTALL
diff options
context:
space:
mode:
authorArvindh Rajesh Tamilmani <art@a-30.net>2010-04-09 15:28:16 -0700
committerRuss Cox <rsc@swtch.com>2010-04-09 15:28:16 -0700
commit80c90f271e673a036cf208399cfc824e388249c5 (patch)
treeac44124a2d752aeb79e0b3c3139a532d946652e3 /INSTALL
parentf50c3e956ffbeb15f3d386752805d1baf1c708df (diff)
downloadplan9port-80c90f271e673a036cf208399cfc824e388249c5.tar.gz
plan9port-80c90f271e673a036cf208399cfc824e388249c5.tar.bz2
plan9port-80c90f271e673a036cf208399cfc824e388249c5.zip
fix build on SunOS (Sparc)
R=rsc CC=codebot http://codereview.appspot.com/882044
Diffstat (limited to 'INSTALL')
-rwxr-xr-xINSTALL10
1 files changed, 9 insertions, 1 deletions
diff --git a/INSTALL b/INSTALL
index cd908443..4a175d8d 100755
--- a/INSTALL
+++ b/INSTALL
@@ -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