| tInstall script. - plan9port - [fork] Plan 9 from user space | |
| git clone git://src.adamsgaard.dk/plan9port | |
| Log | |
| Files | |
| Refs | |
| README | |
| LICENSE | |
| --- | |
| commit b4e0c548bc06218103c86aa0fd24293bc96eb41d | |
| parent d6df6c1e29b4cc9f166b8346efdcaf97f142158d | |
| Author: rsc <devnull@localhost> | |
| Date: Sun, 29 Feb 2004 22:53:01 +0000 | |
| Install script. | |
| Diffstat: | |
| A INSTALL | 13 +++++++++++++ | |
| 1 file changed, 13 insertions(+), 0 deletions(-) | |
| --- | |
| diff --git a/INSTALL b/INSTALL | |
| t@@ -0,0 +1,13 @@ | |
| +#!/bin/sh | |
| + | |
| +PLAN9=`pwd` export PLAN9 | |
| +PATH=$PLAN9/bin:$PATH export PATH | |
| + | |
| +cd src | |
| +make | |
| +mk clean | |
| +mk install | |
| + | |
| +echo "Set PLAN9=$PLAN9 in your profile environment." | |
| +echo 'Add $PLAN9/bin to your profile PATH.' | |
| + |