diff options
author | rsc <devnull@localhost> | 2005-01-17 20:57:57 +0000 |
---|---|---|
committer | rsc <devnull@localhost> | 2005-01-17 20:57:57 +0000 |
commit | eea5f6adfed4de2d9ef848b170027fd57206c81c (patch) | |
tree | 60636375a2e46e5b0277f8e2772a794a1effd141 | |
parent | 87ccb5f9cfd230cc1be7ba81ba6d2b6ba7dc7254 (diff) | |
download | plan9port-eea5f6adfed4de2d9ef848b170027fd57206c81c.tar.gz plan9port-eea5f6adfed4de2d9ef848b170027fd57206c81c.tar.bz2 plan9port-eea5f6adfed4de2d9ef848b170027fd57206c81c.zip |
source $PLAN9/config
-rwxr-xr-x | bin/9c | 1 | ||||
-rwxr-xr-x | bin/9l | 3 |
2 files changed, 3 insertions, 1 deletions
@@ -1,5 +1,6 @@ #!/bin/sh +test -f $PLAN9/config && . $PLAN9/config usegcc() { cc=gcc @@ -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" ;; |