plan9port

fork of plan9port with libvec, libstr and libsdb
Log | Files | Refs | README | LICENSE

commit eea5f6adfed4de2d9ef848b170027fd57206c81c
parent 87ccb5f9cfd230cc1be7ba81ba6d2b6ba7dc7254
Author: rsc <devnull@localhost>
Date:   Mon, 17 Jan 2005 20:57:57 +0000

source $PLAN9/config

Diffstat:
Mbin/9c | 1+
Mbin/9l | 3++-
2 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/bin/9c b/bin/9c @@ -1,5 +1,6 @@ #!/bin/sh +test -f $PLAN9/config && . $PLAN9/config usegcc() { cc=gcc diff --git a/bin/9l b/bin/9l @@ -1,5 +1,6 @@ #!/bin/sh +test -f $PLAN9/config && . $PLAN9/config libsl="" doautolib=true @@ -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" ;;