blob: f68fe99512b7008aeb7fe7212f6dc63d047ea4ac (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
#!/bin/sh
PLAN9=`pwd` export PLAN9
PATH=/bin:/usr/bin:$PLAN9/bin:$PATH export PATH
echo "Resetting $PLAN9/config"
rm -f config
(
if [ `uname` = Linux ]; then
# On Linux, we use the kernel version to decide whether
# to use pthreads or not. On 2.6 versions that aren't
# linking with NPTL by default, pretend to be an older kernel.
echo "Running on Linux: checking for NPTL..."
gcc lib/linux-isnptl.c -lpthread
if ./a.out >/dev/null
then
echo " NPTL found."
echo "SYSVERSION=2.6.x" >$PLAN9/config
else
echo " NPTL not found."
echo "SYSVERSION=2.4.x" >$PLAN9/config
fi
rm -f ./a.out
fi
if [ -f LOCAL.config ]; then
echo Using LOCAL.config options:
sed 's/^/ /' LOCAL.config
cat LOCAL.config >>config
fi
echo "Building mk..."
cd src
make
echo "Building everything..."
mk clean
mk libs-nuke
mk all
echo "Installing everything..."
mk install
echo "Cleaning up..."
mk clean
echo "Renaming hard-coded /usr/local/plan9 paths..."
cd $PLAN9
sh lib/moveplan9.sh
echo "Building web manual..."
cd $PLAN9/dist; mk man
if [ -x LOCAL.INSTALL ]; then
echo "Running local modifications..."
./LOCAL.INSTALL
fi
echo "Done. "
echo " "
echo "Add these to your profile environment."
echo " PLAN9=$PLAN9 export PLAN9"
echo ' PATH=$PATH:'"$PLAN9/bin export PATH"
) 2>&1 | tee install.log
|