From e4d6099eff8d04d96fd4937bc97631abc5218fcd Mon Sep 17 00:00:00 2001 From: keks Date: Fri, 13 Oct 2017 01:57:17 +0200 Subject: 9l: accept Linux kernel version 4.x Fixes #114. --- bin/9l | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bin') diff --git a/bin/9l b/bin/9l index a82a2812..2409e641 100755 --- a/bin/9l +++ b/bin/9l @@ -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 -- cgit v1.2.3 From 7e6c008b73156b24ed7b59f6f076b4cda914ec86 Mon Sep 17 00:00:00 2001 From: Gleydson Soares Date: Sun, 15 Oct 2017 15:39:08 -0300 Subject: web: *chrome* matches google-chrome --- bin/web | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bin') diff --git a/bin/web b/bin/web index 08c5e37f..7829229f 100755 --- a/bin/web +++ b/bin/web @@ -34,7 +34,7 @@ plumbunix() $BROWSER -remote 'openURL('"$@"',new-tab)' || $BROWSER "$@" ;; - *google-chrome*|*chromium*|*chrome*) + *chrome*|*chromium*) $BROWSER "$@" ;; esac -- cgit v1.2.3