diff options
author | Günther Noack <guenther@unix-ag.uni-kl.de> | 2019-09-19 22:49:08 +0200 |
---|---|---|
committer | Dan Cross <crossd@gmail.com> | 2019-09-19 16:49:08 -0400 |
commit | 13d40aa64c8c073c296ad2c8df0bae6d607aff07 (patch) | |
tree | 0d92fd2875909f3dc4c2bb84ce4122588c352d60 /bin/9l | |
parent | f1dd3f065a97f57bf59db2e3284868e181734159 (diff) | |
download | plan9port-13d40aa64c8c073c296ad2c8df0bae6d607aff07.tar.gz plan9port-13d40aa64c8c073c296ad2c8df0bae6d607aff07.tar.bz2 plan9port-13d40aa64c8c073c296ad2c8df0bae6d607aff07.zip |
9l: support Linux version 5.0+ (#274)
Update 9l to support Linux 5.x.
Diffstat (limited to 'bin/9l')
-rwxr-xr-x | bin/9l | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -40,7 +40,7 @@ case "$tag" in userpath=true extralibs="$extralibs -lutil -lresolv" case "${SYSVERSION:-`uname -r`}" in - 2.6.* | 3.* | 4.*) + 2.6.* | [3-9].* | [1-9][0-9].*) extralibs="$extralibs -lpthread" ;; esac |