diff options
author | keks <j-winkelmann@tuhh.de> | 2017-10-13 01:57:17 +0200 |
---|---|---|
committer | David du Colombier <0intro@gmail.com> | 2017-10-13 15:11:15 +0200 |
commit | e4d6099eff8d04d96fd4937bc97631abc5218fcd (patch) | |
tree | 0f83c5b6d0c15083758feb2681ad5cac06e6512a /bin | |
parent | 7321ed031ceb9494751a8deb85fd224ff0520c39 (diff) | |
download | plan9port-e4d6099eff8d04d96fd4937bc97631abc5218fcd.tar.gz plan9port-e4d6099eff8d04d96fd4937bc97631abc5218fcd.tar.bz2 plan9port-e4d6099eff8d04d96fd4937bc97631abc5218fcd.zip |
9l: accept Linux kernel version 4.x
Fixes #114.
Diffstat (limited to 'bin')
-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.*) + 2.6.* | 3.* | 4.*) extralibs="$extralibs -lpthread" ;; esac |