tsource $PLAN9/config - plan9port - [fork] Plan 9 from user space
(HTM) git clone git://src.adamsgaard.dk/plan9port
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
(DIR) LICENSE
---
(DIR) commit eea5f6adfed4de2d9ef848b170027fd57206c81c
(DIR) parent 87ccb5f9cfd230cc1be7ba81ba6d2b6ba7dc7254
(HTM) Author: rsc <devnull@localhost>
Date: Mon, 17 Jan 2005 20:57:57 +0000
source $PLAN9/config
Diffstat:
M bin/9c | 1 +
M bin/9l | 3 ++-
2 files changed, 3 insertions(+), 1 deletion(-)
---
(DIR) diff --git a/bin/9c b/bin/9c
t@@ -1,5 +1,6 @@
#!/bin/sh
+test -f $PLAN9/config && . $PLAN9/config
usegcc()
{
cc=gcc
(DIR) diff --git a/bin/9l b/bin/9l
t@@ -1,5 +1,6 @@
#!/bin/sh
+test -f $PLAN9/config && . $PLAN9/config
libsl=""
doautolib=true
t@@ -173,7 +174,7 @@ case "$tag" in
*Linux*)
ld=gcc
extralibs="$extralibs -lutil"
- case "`uname -r`" in
+ case "${SYSVERSION:-`uname -r`}" in
2.6.*)
extralibs="$extralibs -lpthread"
;;